(t *testing.T)
| 2127 | } |
| 2128 | |
| 2129 | func TestAtou(t *testing.T) { |
| 2130 | t.Parallel() |
| 2131 | if i, b := atou([]byte("a")); i != 0 || b { |
| 2132 | t.Error("oops") |
| 2133 | } |
| 2134 | } |
| 2135 | |
| 2136 | func TestTrimLeftSpace(t *testing.T) { |
| 2137 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…