(t *testing.T, got, expected string)
| 105 | } |
| 106 | |
| 107 | func checkStringOmits(t *testing.T, got, expected string) { |
| 108 | t.Helper() |
| 109 | if strings.Contains(got, expected) { |
| 110 | t.Errorf("Expected to not contain: \n %v\nGot: %v", expected, got) |
| 111 | } |
| 112 | } |
no test coverage detected