From 30d0a2f40afadf7fef9e008bf2fa557b07560c54 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Sat, 24 Dec 2016 22:47:36 +0800 Subject: - New function `GetCellFormula` added; - Fix `GetCellValue` causes panic in some particular situation issues; - Go test updated --- excelize_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'excelize_test.go') diff --git a/excelize_test.go b/excelize_test.go index e9ad669..35a395c 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -29,6 +29,9 @@ func TestExcelize(t *testing.T) { f1.SetCellStr("SHEET3", "b230", "10") f1.SetCellStr("SHEET10", "b230", "10") f1.SetActiveSheet(2) + f1.GetCellFormula("Sheet1", "B19") // Test get cell formula with given rows number. + f1.GetCellFormula("Sheet2", "B20") // Test get cell formula with illegal sheet index. + f1.GetCellFormula("Sheet1", "B20") // Test get cell formula with illegal rows number. // Test read cell value with given illegal rows number. f1.GetCellValue("Sheet2", "a-1") // Test read cell value with given lowercase column number. -- cgit v1.2.1