@RunWith(SpringJUnit4ClassRunner.class)让测试运行于Spring测试环境
@ContextConfiguration 用来指定加载的Spring配置文件的位置,会加载默认配置文件
加载Spring配置文件:@ContextConfiguration(classpath:/com/example/MyTest-context.xml文件)
@RunWith(SpringJUnit4ClassRunner.class)让测试运行于Spring测试环境
@ContextConfiguration 用来指定加载的Spring配置文件的位置,会加载默认配置文件
加载Spring配置文件:@ContextConfiguration(classpath:/com/example/MyTest-context.xml文件)