(t *testing.T, err error)
| 25 | } |
| 26 | |
| 27 | func MustNotError(t *testing.T, err error) { |
| 28 | t.Helper() |
| 29 | if err == nil { |
| 30 | return |
| 31 | } |
| 32 | t.Fatalf("operation failed: %s", err) |
| 33 | } |
| 34 | |
| 35 | func TestKeyChanges(t *testing.T) { |
| 36 | test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) { |
no outgoing calls
no test coverage detected