Runs a query and retrieves the result as string. @throws IOException I/O exception
()
| 218 | * Runs a query and retrieves the result as string. |
| 219 | * @throws IOException I/O exception */ |
| 220 | @Test public void query() throws IOException { |
| 221 | final Query query = session.query("1"); |
| 222 | assertEqual("1", query.execute()); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Runs a query and retrieves the result as string. |
no test coverage detected