mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-11 18:11:21 +08:00
15 lines
188 B
Go
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)
|
|
}
|