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