Spring Boot アプリケーションの統合テストでは、常に Web サーバーが最初に起動されます。
スプリング ブート テストの最も単純なテストは次のようになりますが、代わりに kotlintest を使用して移行するにはどうすればよいですか?
@ExtendWith(SpringExtension::class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
class ReportApplicationTests {
@Test
fun `Server can be launched`() {
}
}