(t *testing.T, a, b interface{})
| 20 | } |
| 21 | |
| 22 | func assertEqual(t *testing.T, a, b interface{}) { |
| 23 | if !reflect.DeepEqual(a, b) { |
| 24 | t.Errorf("%v != %v", a, b) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func splitChars(s string) [][]byte { |
| 29 | chars := make([][]byte, 0, len(s)) |
no test coverage detected