Package org.apache.torque.test.peer

Examples of org.apache.torque.test.peer.AuthorPeerImpl


     *
     * @throws Exception if a database error occurs.
     */
    public void testNoArgConstructor() throws Exception
    {
        AuthorPeerImpl authorPeerImpl= new AuthorPeerImpl();
        assertEquals(AuthorPeer.TABLE, authorPeerImpl.getTableMap());
        assertEquals(
                AuthorPeer.DATABASE_NAME,
                authorPeerImpl.getDatabaseName());
        assertTrue(authorPeerImpl.getRecordMapper() instanceof
                AuthorRecordMapper);
    }
View Full Code Here

TOP

Related Classes of org.apache.torque.test.peer.AuthorPeerImpl

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.