Testng单元测试用例加载配置文件

记录一下单元测试

import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.testng.AbstractTestNGSpringContextTests;
import org.springframework.test.context.web.WebAppConfiguration;

@WebAppConfiguration
@ContextConfiguration(locations = {"classpath:mvc-context.xml"})
public class BaseTest extends AbstractTestNGSpringContextTests {

}

猜你喜欢

转载自blog.csdn.net/bj_ameng/article/details/80983739
今日推荐