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