(t *testing.T, c config)
| 891 | } |
| 892 | |
| 893 | func testGet(t *testing.T, c config) { |
| 894 | wd := newRemote(t, c) |
| 895 | defer quitRemote(t, wd) |
| 896 | |
| 897 | if err := wd.Get(serverURL); err != nil { |
| 898 | t.Fatal(err) |
| 899 | } |
| 900 | |
| 901 | newURL, err := wd.CurrentURL() |
| 902 | if err != nil { |
| 903 | t.Fatal(err) |
| 904 | } |
| 905 | |
| 906 | if newURL != serverURL+"/" { |
| 907 | t.Fatalf("%s != %s", newURL, serverURL) |
| 908 | } |
| 909 | } |
| 910 | |
| 911 | func testNavigation(t *testing.T, c config) { |
| 912 | wd := newRemote(t, c) |
nothing calls this directly
no test coverage detected