0 votes
in JAVA by (6.0k points)

Select the correct syntax for creating MockMvc instance for EmployeeController,java.

this.mockMvc = MockMvcBuilders.standaloneSetup (employeeController).setup();

this.mockMvc = MockMvcBuilders.standaloneSetup (employeeController);

this.mockMvc = MockMvcBuilders.standaloneSetup();

this.mockMvc = MockMvcBuilders.standaloneSetup (employeeController).build();

1 Answer

0 votes
by (30.6k points)
this.mockMvc = MockMvcBuilders.standaloneSetup (employeeController).build();
Click here to read more about JAVA
Click here to read more about Insurance

Related questions

0 votes
asked May 18, 2020 in JAVA by AdilsonLima (5.6k points)
+1 vote
asked Jan 10, 2020 in JAVA by DavidAnderson (7.4k points)
0 votes
asked Jan 10, 2020 in JAVA by DavidAnderson (7.4k points)
0 votes
asked Dec 12, 2019 in JAVA by AdilsonLima (5.6k points)
...