(t *testing.T)
| 13 | } |
| 14 | |
| 15 | func TestDialectMariaDB_InAllDialects(t *testing.T) { |
| 16 | found := false |
| 17 | for _, d := range keywords.AllDialects() { |
| 18 | if d == keywords.DialectMariaDB { |
| 19 | found = true |
| 20 | break |
| 21 | } |
| 22 | } |
| 23 | if !found { |
| 24 | t.Error("DialectMariaDB not found in AllDialects()") |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func TestDialectMariaDB_IsValidDialect(t *testing.T) { |
| 29 | if !keywords.IsValidDialect("mariadb") { |
nothing calls this directly
no test coverage detected