* Tests the statistics of the given format.
*/
@Test
public void checkStatistics() {
SerializedInputFormat<Record> input = this.createInputFormat();
BaseStatistics statistics = input.getStatistics(null);
Assert.assertEquals(this.numberOfTuples, statistics.getNumberOfRecords());
}