Package com.nearinfinity.honeycomb.mysql.generators

Examples of com.nearinfinity.honeycomb.mysql.generators.TableSchemaGenerator


     *
     * @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()));
        }
    }
View Full Code Here

TOP

Related Classes of com.nearinfinity.honeycomb.mysql.generators.TableSchemaGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.