(t *testing.T, got, expected string)
| 99 | } |
| 100 | |
| 101 | func checkStringOmits(t *testing.T, got, expected string) { |
| 102 | if strings.Contains(got, expected) { |
| 103 | t.Errorf("Expected to not contain: \n %v\nGot: %v", expected, got) |
| 104 | } |
| 105 | } |
no outgoing calls
no test coverage detected