Skip to content

Commit

Permalink
Use TrustStoreResource in Olingo4 test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Apr 8, 2020
1 parent 307e7f5 commit 8ee5075
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions integration-tests/olingo4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@

import java.io.IOException;

import io.quarkus.test.common.QuarkusTestResource;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.apache.camel.quarkus.test.TrustStoreResource;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.impl.client.CloseableHttpClient;
Expand All @@ -35,6 +37,7 @@
import static org.hamcrest.core.Is.is;

@QuarkusTest
@QuarkusTestResource(TrustStoreResource.class)
class Olingo4Test {

private static String sessionId;
Expand Down

0 comments on commit 8ee5075

Please sign in to comment.