使用TestNG的Spring依赖注入
Spring在以下方面很好地支持JUnit:使用RunWith
和ContextConfiguration
注释,事情看起来非常直观
@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations = "classpath:dao-context.xml")
该测试将能够在Eclipse&Maven中正确运行。我想知道TestNG是否有类似的东西。我正在考虑迁移到“下一代”框架,但没有找到与Spring测试匹配的对象。
回答:
它也可以与TestNG一起使用。
org.springframework.test.context.testng.AbstractTestNGSpringContextTests
org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests
以上是 使用TestNG的Spring依赖注入 的全部内容, 来源链接: utcz.com/qa/423915.html