Skip to content

Commit 6612632

Browse files
Copilotaoles
andcommitted
fix: add testcontainers annotations to status/ResultTest
Co-authored-by: aoles <[email protected]>
1 parent c860f73 commit 6612632

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ors-api/src/test/java/org/heigit/ors/apitests/status/ResultTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@
1717
import org.heigit.ors.apitests.common.EndPointAnnotation;
1818
import org.heigit.ors.apitests.common.VersionAnnotation;
1919
import org.junit.jupiter.api.Test;
20+
import org.junit.jupiter.api.extension.ExtendWith;
21+
import org.testcontainers.junit.jupiter.Testcontainers;
22+
import org.testcontainers.junit.jupiter.TestcontainersExtension;
2023

2124
import static io.restassured.RestAssured.given;
2225
import static org.hamcrest.Matchers.is;
2326

2427
@EndPointAnnotation(name = "status")
2528
@VersionAnnotation(version = "v2")
29+
@ExtendWith(TestcontainersExtension.class)
30+
@Testcontainers(disabledWithoutDocker = true)
2631
class ResultTest extends AbstractContainerBaseTest {
2732

2833
@Test

0 commit comments

Comments
 (0)