dockerfiles/ga-proxy/ga/ga_test.go

11 lines
116 B
Go
Raw Normal View History

2021-06-08 20:46:29 +08:00
package ga
import "testing"
func TestDetect(t *testing.T) {
err := Detect()
if err != nil {
t.Error(err)
}
}