Files
simpleorm/main_test.go
T
2026-05-03 19:23:27 +02:00

17 lines
182 B
Go

package simpleorm_test
import (
"os"
"testing"
log "gitlab.com/gdulai/simpleloglvl"
)
func TestMain(m *testing.M) {
log.SetupLogs("Debug")
code := m.Run()
os.Exit(code)
}