(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestDriver_Status(t *testing.T) { |
| 68 | driver, err := NewUIADriver(nil, uiaServerURL) |
| 69 | if err != nil { |
| 70 | t.Fatal(err) |
| 71 | } |
| 72 | |
| 73 | _, err = driver.Status() |
| 74 | if err != nil { |
| 75 | t.Fatal(err) |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func TestDriver_Screenshot(t *testing.T) { |
| 80 | driver, err := NewUIADriver(nil, uiaServerURL) |
nothing calls this directly
no test coverage detected