assertThat(firstRow.valueAs("three", Integer.class), is(99));
assertThat(firstRowValues.containsKey("XX"), is(false));
assertThat(firstRow.valueAs("XX", Integer.class, 13), is(13));
Parameters secondRow = examplesTable.getRowAsParameters(1);
Map<String, String> secondRowValues = secondRow.values();
assertThat(secondRowValues.containsKey("one"), is(true));
assertThat(secondRow.valueAs("one", String.class), is("22"));
assertThat(secondRow.valueAs("one", Integer.class), is(22));
assertThat(secondRowValues.containsKey("three"), is(true));
assertThat(secondRow.valueAs("three", String.class), is("99"));