This repository has been archived by the owner on Apr 9, 2022. It is now read-only.
forked from AITestingOrg/banking-microservices-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
65 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'#!/bin/sh' | ||
|
||
# Generate the Pact JSON files in the root of the project in 'pact-tests'. | ||
# To change the target directory see `systemProperties['pact.rootDir'] = "../pact-tests"` | ||
# An example change could be `systemProperties['pact.rootDir'] = "${buildDir}/pact-tests"` to | ||
# store them in each projects directory, but then the publish location needs to be created for each | ||
# provider. | ||
./gradlew :account-cmd:test --tests "*.contract.consumer.*" | ||
./gradlew :account-query:test --tests "*.contract.consumer.*" | ||
./gradlew :customers:test --tests "*.contract.consumer.*" | ||
./gradlew :transactions:test --tests "*.contract.consumer.*" | ||
|
||
# Since the PACT plugin is global to all projects this will publish all provider pacts, not just | ||
# transactions. | ||
./gradlew :transactions:pactPublish |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'#!/bin/sh' | ||
./gradlew :customers:pactVerify_AccountCmd | ||
./gradlew :customers:pactVerify_AccountQuery | ||
./gradlew :customers:pactVerify_Customers | ||
./gradlew :customers:pactVerify_Transactions |