SpringRunner vs SpringBootTest

后端 未结 3 1423
时光取名叫无心
时光取名叫无心 2020-12-08 09:45

In unit test, what are the differences between @Runwith(SpringRunner.class) & @SpringBootTest?

Can you explain to me the use cases of

3条回答
  •  遥遥无期
    2020-12-08 10:21

    @RunWith(SpringRunner.class) : You need this annotation to just enable spring boot features like @Autowire, @MockBean etc.. during junit testing

    is used to provide a bridge between Spring Boot test features and JUnit. Whenever we are using any Spring Boot testing features in our JUnit tests, this annotation will be required.

    @SpringBootTest : This annotation is used to load complete application context for end to end integration testing

    The @SpringBootTest annotation can be used when we need to bootstrap the entire container. The annotation works by creating the ApplicationContext that will be utilized in our tests.

    Here is the article with clear examples on both scenarios Baeldung

提交回复
热议问题