diff --git a/src/test/java/ocean/gateway/routes/BusinessTests.java b/src/test/java/ocean/gateway/routes/BusinessTests.java new file mode 100644 index 0000000..75b488a --- /dev/null +++ b/src/test/java/ocean/gateway/routes/BusinessTests.java @@ -0,0 +1,27 @@ +package ocean.gateway.routes; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.SpringBootConfiguration; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.cloud.gateway.route.RouteLocator; +import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder; +import org.springframework.context.annotation.Bean; +import org.springframework.test.context.junit4.SpringRunner; + +import lombok.extern.slf4j.Slf4j; +import ocean.gateway.service.ServiceApplication; + + +@RunWith(SpringRunner.class) +@SpringBootTest(classes = {ServiceApplication.class}, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +public class BusinessTests { + + @Test + public void TestRouteLocator() { + + } + + +} +