(t *testing.T, a, b interface{})
| 16 | } |
| 17 | |
| 18 | func assertEqual(t *testing.T, a, b interface{}) { |
| 19 | if !reflect.DeepEqual(a, b) { |
| 20 | t.Errorf("%v != %v", a, b) |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func splitChars(s string) []string { |
| 25 | chars := make([]string, 0, len(s)) |
no test coverage detected
searching dependent graphs…