Skip to content

Instantly share code, notes, and snippets.

@raylax
Created March 13, 2019 06:59
Show Gist options
  • Save raylax/e31ddd38a4d1ab1d50f4cd0b596fe7b9 to your computer and use it in GitHub Desktop.
Save raylax/e31ddd38a4d1ab1d50f4cd0b596fe7b9 to your computer and use it in GitHub Desktop.
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations = {"classpath:applicationContext.xml","classpath:springmvc.xml"})
public class MVCTest {
@Autowired
WebApplicationContext context;
MockMvc mockMvc;
@Before
public void initMokcMvc() {
mockMvc = MockMvcBuilders.webAppContextSetup(context).build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment