(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestPlugin_Initialize_NoError(t *testing.T) { |
| 44 | db := openTestDB(t) |
| 45 | plugin := gosqlxgorm.NewPlugin() |
| 46 | if err := db.Use(plugin); err != nil { |
| 47 | t.Fatalf("Use plugin: %v", err) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func TestPlugin_RecordsQueriesOnQuery(t *testing.T) { |
| 52 | db := openTestDB(t) |
nothing calls this directly
no test coverage detected