added context test for new WebClientApplication

This commit is contained in:
Gerardo Roza 2021-01-22 12:48:34 -03:00
parent 1b78d4be31
commit 30f0c13ef6
1 changed files with 14 additions and 0 deletions

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() {
}
}