作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Junit 4 中,我可以做类似的事情
@ClassRule
public DropwizardAppRule<Configuration> app = new DropwizardAppRule<>(MyApp.class);
...
app.getLocalPort()
@ExtendWith(DropwizardExtensionsSupport.class)
,但不清楚如何
最佳答案
Dropwizard 1.3.0 added通过引入 DropwizardExtensionsSupport
class 来支持 JUnit5 .
具体来说,如果您需要在测试开始/结束时启动/停止应用程序(这就是 DropwizardAppRule
所做的),有一个 DropwizardAppExtension
可用的。
您为 JUnit5 重写的示例:
@ExtendWith(DropwizardExtensionsSupport.class)
public class MyTest {
public static final DropwizardAppExtension<Config> app = new DropwizardAppExtension<>(MyApp.class);
...
// app.getLocalPort() is also available
}
关于java - 如何在 Junit5 中替换 DropwizardAppRule,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52320654/
我是一名优秀的程序员,十分优秀!