*
* @throws Exception
*/
@Test
public void testSerDe() throws Exception {
TableSchema schema = new TableSchemaGenerator().next();
for (Row row : Iterables.toIterable(new RowGenerator(schema))) {
Assert.assertEquals(row, Row.deserialize(row.serialize()));
}
}