Skip to content

Commit

Permalink
Merge pull request #556 from github-api/dependabot/maven/com.github.t…
Browse files Browse the repository at this point in the history
…omakehurst-wiremock-jre8-standalone-2.25.0

Bump wiremock-jre8-standalone from 2.24.1 to 2.25.0
  • Loading branch information
bitwiseman authored Sep 30, 2019
2 parents 89770b9 + d8451fc commit 4c82d1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8-standalone</artifactId>
<version>2.24.1</version>
<version>2.25.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
12 changes: 12 additions & 0 deletions src/test/java/org/kohsuke/github/junit/WireMockRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,18 @@ public FindRequestsResult findUnmatchedRequests() {
return wireMockServer.findUnmatchedRequests();
}

public void removeServeEvent(UUID uuid) {
wireMockServer.removeServeEvent(uuid);
}

public FindServeEventsResult removeServeEventsMatching(RequestPattern requestPattern) {
return wireMockServer.removeServeEventsMatching(requestPattern);
}

public FindServeEventsResult removeServeEventsForStubsMatchingMetadata(StringValuePattern stringValuePattern) {
return wireMockServer.removeServeEventsForStubsMatchingMetadata(stringValuePattern);
}

public void updateGlobalSettings(GlobalSettings newSettings) {
wireMockServer.updateGlobalSettings(newSettings);
}
Expand Down

0 comments on commit 4c82d1c

Please sign in to comment.