2018-09-15 22:19:20 -04:00
|
|
|
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)
|
2018-12-29 19:09:35 -02:00
|
|
|
public class SpringContextManualTest {
|
2018-09-15 22:19:20 -04:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|