Renamed test class to match target (JdbcDaoImpl).
This commit is contained in:
parent
2c276a0f55
commit
d19fe54c01
|
@ -36,13 +36,13 @@ import java.util.HashSet;
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class JdbcDaoTests extends TestCase {
|
public class JdbcDaoImplTests extends TestCase {
|
||||||
//~ Constructors ===================================================================================================
|
//~ Constructors ===================================================================================================
|
||||||
|
|
||||||
public JdbcDaoTests() {
|
public JdbcDaoImplTests() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public JdbcDaoTests(String arg0) {
|
public JdbcDaoImplTests(String arg0) {
|
||||||
super(arg0);
|
super(arg0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,8 +56,7 @@ public class JdbcDaoTests extends TestCase {
|
||||||
return dao;
|
return dao;
|
||||||
}
|
}
|
||||||
|
|
||||||
private JdbcDaoImpl makePopulatedJdbcDaoWithRolePrefix()
|
private JdbcDaoImpl makePopulatedJdbcDaoWithRolePrefix() throws Exception {
|
||||||
throws Exception {
|
|
||||||
JdbcDaoImpl dao = new JdbcDaoImpl();
|
JdbcDaoImpl dao = new JdbcDaoImpl();
|
||||||
dao.setDataSource(PopulatedDatabase.getDataSource());
|
dao.setDataSource(PopulatedDatabase.getDataSource());
|
||||||
dao.setRolePrefix("ARBITRARY_PREFIX_");
|
dao.setRolePrefix("ARBITRARY_PREFIX_");
|
Loading…
Reference in New Issue