我正在尝试使用h2 db编写集成测试,我收到错误"错误:无法访问BlockJUnit4ClassRunner"在@RunWith()
行任何人都可以提出建议吗?我不知道,即使我在测试中注释掉所有内容都不会构建并给出相同的错误,所以我不会想到导致问题的测试中的内容
@RunWith(SpringJUnit4ClassRunner.class)
@TransactionConfiguration(defaultRollback = true)
@ContextConfiguration(locations = { "classpath:test-applicationContext.xml" })
public class WfsDBTest extends AbstractTransactionalJUnit4SpringContextTests {}
请帮忙 感谢
答案 0 :(得分:1)
看起来你使用了错误的JUnit版本。
确保使用JUnit 4.x并且类路径中没有其他版本的JUnit。尝试使用最新版本。