assertAccount1(account);
assertTrue(account == testAccount);
}
public void testGetSubclass() throws SQLException {
SuperAccount account = new SuperAccount();
account.setId(1);
account = (SuperAccount) sqlMap.queryForObject("getSuperAccount", account);
assertAccount1(account);
}