mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
15 lines
335 B
Go
15 lines
335 B
Go
|
|
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
||
|
|
|
||
|
|
package testutils
|
||
|
|
|
||
|
|
import "os"
|
||
|
|
|
||
|
|
// IsSingleTesting 判断当前测试环境是否为单个函数测试
|
||
|
|
func IsSingleTesting() bool {
|
||
|
|
for _, arg := range os.Args {
|
||
|
|
if arg == "-test.run" {
|
||
|
|
return true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return false
|
||
|
|
}
|