diff options
author | xuri <xuri.me@gmail.com> | 2018-05-14 10:12:46 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2018-05-14 10:12:46 +0800 |
commit | 167554bfeca1bca54e36d761e2be159358736c9e (patch) | |
tree | 5faad60b573af628bcc89828282912167e5d5242 /excelize_test.go | |
parent | eb62256d165607c6877ce88efbba10c119137b3d (diff) |
Improve unit testing, remove redundant code.
Diffstat (limited to 'excelize_test.go')
-rw-r--r-- | excelize_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/excelize_test.go b/excelize_test.go index 0ae09e5..df1b35a 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -82,6 +82,9 @@ func TestOpenFile(t *testing.T) { xlsx.SetCellValue("Sheet2", "F14", uint32(1<<32-1)) xlsx.SetCellValue("Sheet2", "F15", uint64(1<<32-1)) xlsx.SetCellValue("Sheet2", "F16", true) + xlsx.SetCellValue("Sheet2", "F17", complex64(5+10i)) + t.Log(letterOnlyMapF('x')) + t.Log(deepCopy(nil, nil)) // Test boolean write booltest := []struct { value bool @@ -125,7 +128,6 @@ func TestOpenFile(t *testing.T) { if err != nil { t.Log(err) } - } func TestAddPicture(t *testing.T) { |