assertThat(dataSet.getColumnFamilies().get(0).getSubComparatorType(), nullValue());
}
@Test(expected = ParseException.class)
public void shouldNotGetAYamlDataSetStructureBecauseOfNull() {
DataSet dataSet = new ClassPathYamlDataSet(null);
dataSet.getKeyspace();
}