-
-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support system properties or environment variables for consumer…
- Loading branch information
1 parent
aabee8c
commit 86813ba
Showing
5 changed files
with
97 additions
and
32 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
20 changes: 0 additions & 20 deletions
20
provider/src/main/java/au/com/dius/pact/provider/junitsupport/Provider.java
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
18 changes: 18 additions & 0 deletions
18
provider/src/main/kotlin/au/com/dius/pact/provider/junitsupport/Provider.kt
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,18 @@ | ||
package au.com.dius.pact.provider.junitsupport | ||
|
||
import java.lang.annotation.Inherited | ||
import kotlin.annotation.Retention | ||
|
||
/** | ||
* Used to pass provider name to Pact runner. Can use expressions (in `${}` form) to get the value from Java system | ||
* properties or environment variables. | ||
*/ | ||
@Retention(AnnotationRetention.RUNTIME) | ||
@Target(AnnotationTarget.CLASS, AnnotationTarget.FILE) | ||
@Inherited | ||
annotation class Provider( | ||
/** | ||
* @return provider name for pact test running | ||
*/ | ||
val value: String | ||
) |