-
-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(JUnit5): Initialise any plugins before running the provider verif…
…ication
- Loading branch information
1 parent
f4c1862
commit e2905ae
Showing
8 changed files
with
159 additions
and
31 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
22 changes: 22 additions & 0 deletions
22
core/matchers/src/main/kotlin/au/com/dius/pact/core/matchers/CatalogueEntries.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,22 @@ | ||
package au.com.dius.pact.core.matchers | ||
|
||
import io.pact.plugins.jvm.core.CatalogueEntry | ||
import io.pact.plugins.jvm.core.CatalogueEntryProviderType | ||
import io.pact.plugins.jvm.core.CatalogueEntryType | ||
|
||
/** | ||
* Configures all the core transport catalogue entries | ||
*/ | ||
fun interactionCatalogueEntries(): List<CatalogueEntry> { | ||
return listOf( | ||
CatalogueEntry( | ||
CatalogueEntryType.TRANSPORT, CatalogueEntryProviderType.CORE, "core", | ||
"http", mapOf()), | ||
CatalogueEntry(CatalogueEntryType.TRANSPORT, CatalogueEntryProviderType.CORE, "core", | ||
"https", mapOf()), | ||
CatalogueEntry(CatalogueEntryType.INTERACTION, CatalogueEntryProviderType.CORE, "core", | ||
"message", mapOf()), | ||
CatalogueEntry(CatalogueEntryType.INTERACTION, CatalogueEntryProviderType.CORE, "core", | ||
"synchronous-message", mapOf()) | ||
) | ||
} |
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
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
Oops, something went wrong.