84eabeae2f0330099e51fcfc57c7ff4be6e17c16
[demos/spring-boot] / src / test / java / de / juplo / demo / DemoControllerIT.java
1 package de.juplo.demo;
2
3
4 import lombok.extern.slf4j.Slf4j;
5 import org.junit.jupiter.api.Test;
6 import org.springframework.boot.test.context.SpringBootTest;
7 import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
8 import org.testcontainers.containers.BrowserWebDriverContainer;
9
10
11 /**
12  * Integration-Test for the {@link DemoController}.
13  * @author Kai Moritz
14  */
15 @SpringBootTest(webEnvironment = RANDOM_PORT)
16 @Slf4j
17 public class DemoControllerIT
18 {
19   @Test
20   void testSubmit(BrowserWebDriverContainer chrome)
21   {
22     
23   }
24 }