返回 DeepSeek-Reasonix
main_test.go
根目录 / internal / tool / builtin / main_test.go
1 package builtin
2
3 import (
4 "os"
5 "testing"
6 )
7
8 func TestMain(m *testing.M) {
9 os.Exit(m.Run())
10 }
11
11 lines GO