我正在尝试使用 h2 db 编写集成测试,在 @RunWith() 行出现“错误:无法访问 BlockJUnit4ClassRunner”错误
有人可以建议吗?我不知道,即使我注释掉测试中的所有内容,它也不会构建并给出相同的错误,所以我不认为测试中导致问题的原因
@RunWith(SpringJUnit4ClassRunner.class)
@TransactionConfiguration(defaultRollback = true)
@ContextConfiguration(locations = { "classpath:test-applicationContext.xml" })
public class WfsDBTest extends AbstractTransactionalJUnit4SpringContextTests {}
请帮忙谢谢