diff options
Diffstat (limited to 'excelize_test.go')
-rw-r--r-- | excelize_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/excelize_test.go b/excelize_test.go index 1b48872..d838a1f 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -21,6 +21,14 @@ import ( "github.com/stretchr/testify/assert" ) +func TestCurrency(t *testing.T) { + f, err := OpenFile(filepath.Join("test", "Book1.xlsx")) + assert.NoError(t, err) + // f.NewSheet("Sheet3") + go f.SetCellValue("Sheet1", "A1", "value") + go f.SetCellValue("Sheet2", "A1", "value") +} + func TestOpenFile(t *testing.T) { // Test update the spreadsheet file. f, err := OpenFile(filepath.Join("test", "Book1.xlsx")) |