From b1b056e0ebe0f05bae16023bf4972bda226de40c Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Fri, 2 Mar 2018 10:19:40 +0800 Subject: Handle special shared string table file name `xl/SharedStrings.xml`, relate issue #188 --- excelize_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'excelize_test.go') diff --git a/excelize_test.go b/excelize_test.go index ca705e5..0d0fdf1 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -1009,3 +1009,12 @@ func TestTitleToNumber(t *testing.T) { t.Error("Conver title to number failed") } } + +func TestSharedStrings(t *testing.T) { + xlsx, err := OpenFile("./test/SharedStrings.xlsx") + if err != nil { + fmt.Println(err) + return + } + xlsx.GetRows("Sheet1") +} -- cgit v1.2.1