Skip to content

Commit

Permalink
Add kotest to supported engines in gradle-test-pts-support scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbertrand committed Nov 2, 2023
1 parent 4687de5 commit 470fc82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ class Capture {
'org.spockframework.runtime.SpockEngine' : 'spock',
'net.jqwik.engine.JqwikTestEngine' : 'jqwik',
'com.tngtech.archunit.junit.ArchUnitTestEngine' : 'archunit',
'co.helmethair.scalatest.ScalatestEngine' : 'scalatest'
'co.helmethair.scalatest.ScalatestEngine' : 'scalatest',
'io.kotest.runner.junit.platform.KotestJunitPlatformTestEngine' : 'kotest-runner'
]
private Logger logger

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class Capture(val logger: Logger) {
"org.spockframework.runtime.SpockEngine" to "spock",
"net.jqwik.engine.JqwikTestEngine" to "jqwik",
"com.tngtech.archunit.junit.ArchUnitTestEngine" to "archunit",
"co.helmethair.scalatest.ScalatestEngine" to "scalatest"
"co.helmethair.scalatest.ScalatestEngine" to "scalatest",
"io.kotest.runner.junit.platform.KotestJunitPlatformTestEngine" to "kotest-runner"
)

fun capturePts(t: Test, api: BuildScanExtension) {
Expand Down

0 comments on commit 470fc82

Please sign in to comment.