Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

@IntegrationTest vs @WebIntegrationTest annotations

In Spring (Boot), what is the difference between @IntegrationTest and @WebIntegrationTest?

According to documentation both annotations supply a fully loaded application server listening on usual ports.

like image 696
Jasper Blues Avatar asked Nov 01 '15 07:11

Jasper Blues


1 Answers

@WebIntegrationTest = @IntegrationTest + @WebAppConfiguration

like image 167
T D Avatar answered Sep 28 '22 05:09

T D