aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java')
-rw-r--r--app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java12
1 files changed, 2 insertions, 10 deletions
diff --git a/app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java b/app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java
index 7852c41..104b683 100644
--- a/app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java
+++ b/app/src/test/java/org/onap/portal/prefs/BaseIntegrationTest.java
@@ -30,16 +30,16 @@ import io.restassured.RestAssured;
import io.restassured.filter.log.RequestLoggingFilter;
import io.restassured.filter.log.ResponseLoggingFilter;
import io.restassured.specification.RequestSpecification;
-import io.vavr.collection.List;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.boot.web.server.LocalServerPort;
+import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.cloud.contract.wiremock.AutoConfigureWireMock;
import org.springframework.http.MediaType;
+import java.util.List;
import java.util.UUID;
/** Base class for all tests that has the common config including port, realm, logging and auth. */
@@ -47,14 +47,6 @@ import java.util.UUID;
@AutoConfigureWireMock(port = 0)
public abstract class BaseIntegrationTest {
-// @TestConfiguration
-// public static class Config {
-// @Bean
-// WireMockConfigurationCustomizer optionsCustomizer() {
-// return options -> options.extensions(new ResponseTemplateTransformer(true));
-// }
-// }
-
@LocalServerPort protected int port;
@Value("${portal-prefs.realm}")
protected String realm;