如何编写dropwizard的集成测试

时间:2013-07-15 19:44:47

标签: testing integration dropwizard

我正在使用dropwizard开发一个应用程序,我需要使用存根启动我的应用程序并运行一些集成测试。

是否有人了解相同的测试框架?

1 个答案:

答案 0 :(得分:3)

显然可以使用DropwizardServiceRule

完成
DropwizardServiceRule<ServerConfiguration> server = new DropwizardServiceRule<ServerConfiguration>(Main.class, this.getClass().getResource("/config-samples/test-integration-server-config.yml").getPath())

server.startIfRequired()