/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-boot-modules/spring-boot-angular/src/test/java/com/baeldung/SpringContextTest.java
17 строк
459 B
wolkenschieber
Update packages to match declaration
10 янв 2021, 16:03
10 янв 2021, 16:03
c0955b0
Код
Авторство
О чём код?
package com.baeldung; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import com.baeldung.ecommerce.EcommerceApplication; @RunWith(SpringRunner.class) @SpringBootTest(classes = EcommerceApplication.class) public class SpringContextTest { @Test public void whenSpringContextIsBootstrapped_thenNoExceptions() { } }