返回 DeepSeek-Reasonix
main_test.go
根目录 / internal / jobs / main_test.go
1 package jobs
2
3 import (
4 "testing"
5
6 "go.uber.org/goleak"
7 )
8
9 func TestMain(m *testing.M) {
10 goleak.VerifyTestMain(m)
11 }
12
12 lines GO