UT之最后一测 (2)

测试:

@ExtendWith(DropwizardExtensionsSupport.class) class PingResourceTest2 { private static DropwizardAppExtension<HelloWorldServiceConfiguration> EXT = new DropwizardAppExtension<>( HelloWorldServiceApp.class, ResourceHelpers.resourceFilePath("hello.yml") ); @Test void should_get_pong_when_send_ping() { Client client = EXT.client(); String response = client.target( String.format("http://localhost:%d/api/ping", EXT.getLocalPort())) .request() .get(String.class); assertThat(response).isEqualTo("pong"); } }

参考

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyfpzj.html