Examples of AlternateNames


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

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",
                     "NORMAL", tableName);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.