java-tutorials/spring-kafka/src/test/java/org/baeldung/SpringContextManualTest.java
geroza 40e26514f4 * Renamed IntegrationTests that needed manual configurations to run succesfully as ManualTests
* Renamed Integrationtests that needed the project (or related project, in case of client-server) as LiveTests
* Fixed migration of mustache module to make it compatible with spring-boot 2.1
2018-12-29 19:09:35 -02:00

18 lines
460 B
Java

package org.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.spring.kafka.KafkaApplication;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = KafkaApplication.class)
public class SpringContextManualTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}