diff options
Diffstat (limited to '')
-rw-r--r-- | tests/main_test.go | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/main_test.go b/tests/main_test.go new file mode 100644 index 0000000..bccd947 --- /dev/null +++ b/tests/main_test.go @@ -0,0 +1,29 @@ +package icingadb_test + +import ( + "github.com/icinga/icinga-testing" + "github.com/icinga/icinga-testing/services" + "github.com/icinga/icingadb/tests/internal/utils" + "testing" +) + +var it *icingatesting.IT + +func TestMain(m *testing.M) { + it = icingatesting.NewIT() + defer it.Cleanup() + + m.Run() +} + +func getDatabase(t testing.TB) services.RelationalDatabase { + rdb := getEmptyDatabase(t) + + rdb.ImportIcingaDbSchema() + + return rdb +} + +func getEmptyDatabase(t testing.TB) services.RelationalDatabase { + return utils.GetDatabase(it, t) +} |