Skip to content

Commit 12ec4ce

Browse files
committed
Added test cases
1 parent 37a1117 commit 12ec4ce

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

sql_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ func TestNULLEscape(t *testing.T) {
1313
}
1414
}
1515

16+
func TestEmptyStringEscape(t *testing.T) {
17+
result := Escape("")
18+
t.Logf("result :%s", result)
19+
if result != "''" {
20+
t.Fatalf("escape empty string error")
21+
}
22+
}
1623
func TestBoolEscape(t *testing.T) {
1724

1825
result := Escape(true)

0 commit comments

Comments
 (0)