Spring TestContext can also provide ways to test methods and controllers that need login credentials, which many applications with Spring Security integration require. This recipe builds MockMvc to the ApplicationContext container secured by the Spring Security 4.x module.
Creating tests on secured applications
Getting ready
Open the Maven project ch04 and add test classes to test secured methods.
How to do it...
Let us apply security model to some service methods and test them using Spring TestContext:
- Add the Spring Test module, JUnit 4, and Mockito Maven dependencies...