主要需要JUnit 4 、spring test包
@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations = {"classpath:ApplicationContext.xml"})public class Test { @Autowired Dao dao; @Test public void testEmployee(){ assertEquals("zhangsan",dao.getUserName()); }}
@RunWith junit4里用它来做junit加载器
@ContextConfiguration 主要用来加载spring的配置文件路径:是一个字符串数组,可以加载多个spring配置文件