From db47b6750d06ce8726e042454c9a2291a5466874 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Fri, 2 Sep 2016 19:41:14 +0800 Subject: Update readme and comments of the test file. --- excelize_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'excelize_test.go') diff --git a/excelize_test.go b/excelize_test.go index 456455e..3751775 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -51,10 +51,13 @@ func TestExcelize(t *testing.T) { if err != nil { t.Log(err) } + // Test given illegal rows number GetCellValue(file, "Sheet2", "a-1") + // Test given lowercase column number GetCellValue(file, "Sheet2", "a5") GetCellValue(file, "Sheet2", "C11") GetCellValue(file, "Sheet2", "D11") GetCellValue(file, "Sheet2", "D12") - GetCellValue(file, "Sheet2", "E12") + // Test given axis large than exists row + GetCellValue(file, "Sheet2", "E13") } -- cgit v1.2.1