mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-07 05:02:47 +08:00
16 lines
218 B
Go
16 lines
218 B
Go
//go:build localtest
|
|
|
|
package ios
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetDevice(t *testing.T) {
|
|
device, err := getDevice(udid)
|
|
require.Nil(t, err)
|
|
t.Logf("device: %v", device)
|
|
}
|