assertEquals("initDao called", test.size(), 1);
pmfControl.verify();
}
public void testJdoDaoSupportWithJdoTemplate() throws Exception {
JdoTemplate template = new JdoTemplate();
final List test = new ArrayList();
JdoDaoSupport dao = new JdoDaoSupport() {
protected void initDao() {
test.add("test");
}