public void testLoadsDatasetFile() throws Exception {
DataSet ds = DataSetFactory.getRestaurantDataSet();
Assert.assertEquals(12, ds.size());
Example first = ds.getExample(0);
Assert.assertEquals(YES, first.getAttributeValueAsString("alternate"));
Assert.assertEquals("$$$", first.getAttributeValueAsString("price"));
Assert.assertEquals("0-10",
first.getAttributeValueAsString("wait_estimate"));
Assert.assertEquals(YES, first.getAttributeValueAsString("will_wait"));
Assert.assertEquals(YES, first.targetValue());
}