2020-02-22 10:36:57 +01:00
|
|
|
package com.baeldung;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2021-03-28 23:09:32 +02:00
|
|
|
import org.junit.jupiter.api.Test;
|
2019-10-31 20:43:47 -05:00
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
|
|
|
import com.baeldung.spring.cloud.ribbon.client.ServerLocationApp;
|
|
|
|
|
|
|
|
@SpringBootTest(classes = ServerLocationApp.class)
|
|
|
|
public class SpringContextTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|