@SpringBootTest: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
@SpringBootTest tells to SpringRunner, which is a JUnit plugin that provides custom Spring-specific testing behavior, to bootstrap the test with Spring Boot capabilities. | @SpringBootTest tells to SpringRunner, which is a JUnit plugin that provides custom Spring-specific testing behavior, to bootstrap the test with Spring Boot capabilities. | ||
<syntaxhighlight lang='java'> | |||
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT) | |||
</syntaxhighlight> |
Revision as of 00:27, 11 October 2018
Internal
Overview
@SpringBootTest tells to SpringRunner, which is a JUnit plugin that provides custom Spring-specific testing behavior, to bootstrap the test with Spring Boot capabilities.
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)