added context test for new WebClientApplication

This commit is contained in:
Gerardo Roza
2021-01-22 12:48:34 -03:00
parent 363378ed37
commit 3389b3bba7

View File

@@ -0,0 +1,14 @@
package com.baeldung.web.client;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import com.baeldung.web.reactive.client.WebClientApplication;
@SpringBootTest(classes = WebClientApplication.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}