From b09c6d56832eb1718c07d74abf3bc6ae3fe4e030 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:36:04 +0200 Subject: Adding upstream version 1.1.0. Signed-off-by: Daniel Baumann --- tests/main_test.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/main_test.go (limited to 'tests/main_test.go') 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) +} -- cgit v1.2.3