- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 TestNG 类,如下所示:
public class WebAPITestCase extends AbstractTestNGSpringContextTests{.....}
我试图理解这意味着什么 extends AbstractTestNGSpringContextTests
。
它是如何工作的,有什么用?
最佳答案
请阅读javadoc:
AbstractTestNGSpringContextTests is an abstract base test class that integrates the Spring TestContext Framework with explicit ApplicationContext testing support in a TestNG environment. When you extend AbstractTestNGSpringContextTests, you can access a protected applicationContext instance variable that you can use to perform explicit bean lookups or to test the state of the context as a whole.
基本上,将为测试类设置一个 spring 应用程序上下文。
如果这仍然没有意义,我建议您阅读 this .
关于java - 什么是 AbstractTestNGSpringContextTests,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15826705/
我有一个 TestNG 类,如下所示: public class WebAPITestCase extends AbstractTestNGSpringContextTests{.....} 我试图理
我在 Spring Boot 应用程序中引入了配置文件,并将一些属性从 application.properties 移到了 application-puppet.properties。这在运行应用程
具有多个 AbstractTestNGSpringContextTests 类的 Spring Boot TestNG 会初始化每个测试类的 Spring Boot 上下文。 我已经定义了多个 Tes
我的测试已经扩展了一个抽象的 BaseIntegrationTest 类,因此无法扩展 AbstractTestNGSpringContextTests 类 - 正如我们通常对 Testng Spri
我是一名优秀的程序员,十分优秀!