assertEquals("http://example.com", row[1]);
}
@Test
public void testTwoRow2ColInconsistent() throws IOException {
SparqlResult result = load("sparql-tworow2col-inconsistent.xml");
assertEquals(2, result.getVariables().size());
assertEquals("x", result.getVariables().get(0));
assertEquals("y", result.getVariables().get(1));
List<String[]> results = result.getRows();
assertEquals(2, results.size());
String[] row = results.get(0);
assertEquals(2, row.length);
assertEquals("1", row[0]);
assertEquals("http://example.org", row[1]);