(t *testing.T)
| 13 | ) |
| 14 | |
| 15 | func TestStringCompare(t *testing.T) { |
| 16 | s1 := "hello\x00world" |
| 17 | s2 := "hello\x00sweet" |
| 18 | if s1 <= s2 { |
| 19 | t.Error("s1 <= s2") |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | func TestStringLength(t *testing.T) { |
| 24 | s := "hello\x00world" |
nothing calls this directly
no test coverage detected
searching dependent graphs…