hennilu
01/18/2019, 4:53 PMhennilu
01/18/2019, 4:54 PMhennilu
01/18/2019, 4:55 PMhennilu
01/18/2019, 4:56 PMmp
01/18/2019, 6:31 PMmp
01/18/2019, 6:36 PM@SpringBootTest
@AutoConfigureMockMvc
@ExtendWith(SpringExtension::class)
class Test(
@Autowired val mockMvc: MockMvc
) { ... }
and of course it depends how your app configured and class-path etc etc
Im using SB 2.1.1tjb
01/18/2019, 10:19 PMtjb
01/18/2019, 10:19 PMlateinit var mvc: MockMvc
@Inject
private var context: WebApplicationContext? = null
@Before
fun setUpMvc() {
this.mvc = webAppContextSetup(this.context!!).build()
}
Lt. Templeton Peck
01/20/2019, 10:56 PMhennilu
01/21/2019, 11:42 AMmp
01/21/2019, 12:05 PM