Files
httprunner/hrp/cmd/ios/ios_test.go
2022-11-27 00:19:15 +08:00

13 lines
170 B
Go

//go:build localtest
package ios
func TestGetDevice(t *testing.T) {
device, err := getDevice(udid)
if err != nil {
t.Fatal(err)
}
t.Logf("device: %v", device)
}