import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
+import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.test.web.reactive.server.WebTestClient;
@Slf4j
public class DemoControllerIT
{
+ @Autowired
+ WebTestClient client;
+
+
@Test
- void testSubmit(WebTestClient client)
+ void testSubmit()
{
}