Skip to content

Commit

Permalink
consertando imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alesaudate committed Jun 12, 2024
1 parent 4d909a4 commit 6ab5a43
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package app.car.cap05.interfaces.incoming;

import com.github.tomakehurst.wiremock.WireMockServer;
import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.junit.jupiter.api.BeforeEach;
Expand All @@ -16,16 +15,15 @@
import java.util.Map;

import static app.car.cap05.infrastructure.FileUtils.loadFileContents;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.okJson;
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;
import static com.github.tomakehurst.wiremock.client.WireMock.*;
import static com.github.tomakehurst.wiremock.core.Options.DYNAMIC_PORT;
import static io.restassured.RestAssured.given;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureWireMock(port = WireMockConfiguration.DYNAMIC_PORT)
@SpringBootTest(webEnvironment = RANDOM_PORT)
@AutoConfigureWireMock(port = DYNAMIC_PORT)
@ActiveProfiles("test")
class TravelRequestAPITestIT {

Expand Down

0 comments on commit 6ab5a43

Please sign in to comment.