Package com.volantis.mcs.repository.jdbc

Examples of com.volantis.mcs.repository.jdbc.AlternateNames


     */
    public void testGetTableName() throws RepositoryException {
        JDBCRepositoryImpl repository =
                (JDBCRepositoryImpl) createTestableRepository();

        AlternateNames names = new AlternateNames("NORMAL", "SHORT");

        String tableName = repository.getAppropriateName(names);
        assertEquals("The tablename is incorrect",
                     "SHORT", tableName);
    }
View Full Code Here


     */
    public void testGetTableName() throws RepositoryException {
        JDBCRepositoryImpl repository =
                (JDBCRepositoryImpl) createTestableRepository();

        AlternateNames names = new AlternateNames("NORMAL", "SHORT");

        String tableName = repository.getAppropriateName(names);
        assertEquals("The tablename is incorrect",
                     "NORMAL", tableName);
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.repository.jdbc.AlternateNames

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.