(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func TestDriver_Rotation(t *testing.T) { |
| 94 | driver, err := NewUIADriver(nil, uiaServerURL) |
| 95 | if err != nil { |
| 96 | t.Fatal(err) |
| 97 | } |
| 98 | |
| 99 | rotation, err := driver.Rotation() |
| 100 | if err != nil { |
| 101 | t.Fatal(err) |
| 102 | } |
| 103 | |
| 104 | t.Logf("x = %d\ty = %d\tz = %d", rotation.X, rotation.Y, rotation.Z) |
| 105 | } |
| 106 | |
| 107 | func TestDriver_DeviceSize(t *testing.T) { |
| 108 | driver, err := NewUIADriver(nil, uiaServerURL) |
nothing calls this directly
no test coverage detected