mirror of
https://github.com/oneclickvirt/ecs.git
synced 2025-09-27 03:36:12 +08:00
14 lines
221 B
Go
14 lines
221 B
Go
package nexttrace
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestNextTrace3Check(t *testing.T) {
|
|
start := time.Now()
|
|
NextTrace3Check("zh", "ALL", "ipv4")
|
|
duration := time.Since(start)
|
|
t.Logf("执行耗时: %s", duration)
|
|
}
|