(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestNewDriver(t *testing.T) { |
| 48 | driver, err := NewUIADriver(nil, uiaServerURL) |
| 49 | if err != nil { |
| 50 | t.Fatal(err) |
| 51 | } |
| 52 | |
| 53 | t.Log(driver.sessionId) |
| 54 | } |
| 55 | |
| 56 | func TestDriver_Quit(t *testing.T) { |
| 57 | driver, err := NewUIADriver(nil, uiaServerURL) |
nothing calls this directly
no test coverage detected