Package org.castor.ddlgen.engine.mysql

Examples of org.castor.ddlgen.engine.mysql.MysqlGenerator


     * test get mysql ddl generator
     */
    public void testGetMySQLDDLGenerator() {
       
        try {
            MysqlGenerator generator = (MysqlGenerator) GeneratorFactory
                .createDDLGenerator("mysql", null, null);
            assertEquals(generator.getClass(), MysqlGenerator.class);
        } catch (GeneratorException e) {
            assertTrue(e.getMessage(), false);
        }
    }
View Full Code Here

TOP

Related Classes of org.castor.ddlgen.engine.mysql.MysqlGenerator

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.