// Then
Parameters firstRow = examplesTable.getRowAsParameters(0);
Map<String, String> firstRowValues = firstRow.values();
assertThat(firstRowValues.containsKey("one"), is(true));
assertThat(firstRow.valueAs("one", String.class), is("11"));
assertThat(firstRow.valueAs("one", Integer.class), is(11));
assertThat(firstRowValues.containsKey("three"), is(true));
assertThat(firstRow.valueAs("three", String.class), is("99"));
assertThat(firstRow.valueAs("three", Integer.class), is(99));
assertThat(firstRowValues.containsKey("XX"), is(false));