Ver Fonte

go test added for pull request #114

Ri Xu há 8 anos atrás
pai
commit
565b23e0e9
1 ficheiros alterados com 9 adições e 0 exclusões
  1. 9 0
      excelize_test.go

+ 9 - 0
excelize_test.go

@@ -961,3 +961,12 @@ func TestConditionalFormat(t *testing.T) {
 	_, err = xlsx.NewConditionalStyle(`{"font":{"color":"#9A0511"},"fill":{"type":"pattern","color":["#FEC7CE"],"pattern":1}}`)
 	_, err = xlsx.NewConditionalStyle(`{"font":{"color":"#9A0511"},"fill":{"type":"pattern","color":["#FEC7CE"],"pattern":1}}`)
 	t.Log(err)
 	t.Log(err)
 }
 }
+
+func TestTitleToNumber(t *testing.T) {
+	if TitleToNumber("AK") != 36 {
+		t.Error("Conver title to number failed")
+	}
+	if TitleToNumber("ak") != 36 {
+		t.Error("Conver title to number failed")
+	}
+}