(t *testing.T, got, want string)
| 45 | } |
| 46 | |
| 47 | func assertNotContains(t *testing.T, got, want string) { |
| 48 | t.Helper() |
| 49 | if strings.Contains(strings.ToUpper(got), strings.ToUpper(want)) { |
| 50 | t.Errorf("expected output NOT to contain %q, got: %s", want, got) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | func TestAddWhere_NewCondition(t *testing.T) { |
| 55 | stmt := mustParse(t, "SELECT id, name FROM users") |
no test coverage detected