在netbeans中运行junit测试

时间:2013-10-24 18:18:55

标签: java netbeans junit

我使用maven,git和netbeans。 在netbeans中,有Other Test Sources文件夹,在这个文件夹中我有src / test / resources。 在这个文件夹中,我有一个包spring,它包含web-context.xml,service-context.xml和mvc-context.xml

在junit测试中我做:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
  "classpath:/spring/web-context.xml",
  "classpath:/spring/services-context.xml",
  "classpath:/spring/mvc-context.xml"})
public class repositoryTest {
...
}

java.lang.IllegalStateException: Failed to load ApplicationContext
class path resource [web-context.xml] cannot be opened because it does not exist

我该如何运行测试?

0 个答案:

没有答案