(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestStringLength(t *testing.T) { |
| 24 | s := "hello\x00world" |
| 25 | if len(s) != 11 { |
| 26 | t.Error("go doesn't count embedded nulls in string length") |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func TestIsControl(t *testing.T) { |
| 31 | t.Skip() |
nothing calls this directly
no test coverage detected
searching dependent graphs…