kotlin spring @WebMvcTest is slow
I'm using @WebMVcTest for the integration test in kotlin, spring.
The speed of the test varies a lot for each method, but I don't know the exact cause.
Each test method code is as follows.
@Test
fun `test1`() {
// given
val folderList = mutableListOf(
Folder.FolderListResponse(1L, "emoji1", "child1"),
Folder.FolderListResponse(2L, "emoji2", "child2")
)
every { folderService.findFolderChildList(any()) } returns folderList...