package server import ( "context" "os" "testing" "perms-system-server/internal/testutil" ) func TestMain(m *testing.M) { testutil.EnsureProduct(context.Background(), testutil.GetTestSqlConn(), "test_product") os.Exit(m.Run()) }