Executes the specified GET request and returns the result. @param expected expected result @param path path of request @param params query parameters (keys and values) @throws IOException I/O exception
(final String expected, final String path, final Object... params)
| 81 | * @throws IOException I/O exception |
| 82 | */ |
| 83 | protected static void get(final String expected, final String path, final Object... params) |
| 84 | throws IOException { |
| 85 | assertEquals(expected, get(200, path, params)); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Executes the specified GET request and returns the result. |
nothing calls this directly
no test coverage detected