Package net.sf.autodao.impl

Examples of net.sf.autodao.impl.BookDao


@ContextConfiguration(locations = "classpath:customBeanNamesContext.xml")
public class CustomBeanNamesTest extends AbstractTestNGSpringContextTests {

  @Test
  public void test() {
    final BookDao dao = applicationContext.getBean("dao", BookDao.class);
    Assert.assertNotNull(dao);
  }
View Full Code Here

TOP

Related Classes of net.sf.autodao.impl.BookDao

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.