0

我正在尝试使用 h2 db 编写集成测试,在 @RunWith() 行出现“错误:无法访问 BlockJUnit4ClassRunner”错误

有人可以建议吗?我不知道,即使我注释掉测试中的所有内容,它也不会构建并给出相同的错误,所以我不认为测试中导致问题的原因

@RunWith(SpringJUnit4ClassRunner.class)
@TransactionConfiguration(defaultRollback = true)
@ContextConfiguration(locations = { "classpath:test-applicationContext.xml" })
public class WfsDBTest extends AbstractTransactionalJUnit4SpringContextTests {}

请帮忙谢谢

4

1 回答 1

1

It looks like you use wrong version of JUnit.

Make sure that you use JUnit 4.x and there are no other versions of JUnit in your classpath. Try to use the latest version.

于 2013-04-18T20:07:19.703 回答