1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-FileCopyrightText: 2026 Stefan Majewsky <majewsky@gmx.net> // SPDX-License-Identifier: Apache-2.0 package pgruntime_test import ( "testing" "go.xyrillian.de/gg/pgruntime" ) func TestMain(m *testing.M) { pgruntime.WithTestDB(m, m.Run) }