@Test public void testDelete() throws Exception { ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); ZhunzaiDAO zhunzaiDao = (ZhunzaiDAO) ctx.getBean("zhunzaiDao"); Zhunzai z = new Zhunzai(); z.setId(1); zhunzaiDao.delete(z); }
@Test public void testSearch() throws Exception { ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); ZhunzaiDAO zhunzaiDao = (ZhunzaiDAO) ctx.getBean("zhunzaiDao"); Zhunzai z = new Zhunzai(); z.setId(1); Assert.assertEquals(1, zhunzaiDao.search(z).size()); }
@Test public void testUpdate() throws Exception { ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); ZhunzaiDAO zhunzaiDao = (ZhunzaiDAO) ctx.getBean("zhunzaiDao"); Zhunzai z = new Zhunzai(); z.setId(1); Yuangong yg = new Yuangong(); yg.setId(2); z.setFz_person(yg); zhunzaiDao.update(z); }