我有一个从 AbstractTestNGSpringContextTests 扩展的集成测试类。我想运行测试类两次,每次以编程方式使用不同的配置文件,而不是通过硬编码配置文件和配置 xml,如下所示。
@ContextConfiguration(locations = { "classpath:MyBatisBeanConfiguration.xml" })
@ActiveProfiles("cloud")
public class MyIntegrationTests extends AbstractTestNGSpringContextTests
{
@Test
public void myTest()
{
//do something
}
}