Files
httprunner/hrp/cmd/ios/ios_test.go
2022-11-28 21:32:35 +08:00

15 lines
188 B
Go

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