0 votes
in Service Discovery by
Where is the WebMVC Test Annotation used?

1 Answer

0 votes
by

WebMvcTest Annotation is used for unit testing Spring MVC Applications, where the test objective is to focus on Spring MVC Components. 

Ex: @WebMvcTest(value = ToTestController.class, secure = false)

In the above example, the intention is to launch the ToTestController. All other controllers and mappings will not be launched when this unit test is executed.

Related questions

0 votes
asked Feb 12, 2020 in JAVA by rahuljain1
0 votes
asked Dec 20, 2019 in Service Discovery by sharadyadav1986
...