File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ dependencies {
2727 testImplementation(" io.kotest:kotest-runner-junit5:5.8.0" )
2828 testImplementation(" io.kotest:kotest-assertions-core:5.8.0" )
2929 testImplementation(" io.kotest:kotest-property:5.8.0" )
30+ testImplementation(" org.jetbrains.kotlin:kotlin-test" )
3031 // For testing coroutines
3132 testImplementation(" io.kotest:kotest-assertions-core-jvm:5.8.0" )
3233
@@ -71,13 +72,11 @@ tasks.withType<Test> {
7172java {
7273 toolchain {
7374 languageVersion = JavaLanguageVersion .of(javaVersion)
74- vendor = JvmVendorSpec .ORACLE
7575 }
7676}
7777
7878kotlin {
7979 jvmToolchain {
8080 languageVersion = JavaLanguageVersion .of(javaVersion)
81- vendor = JvmVendorSpec .ORACLE
8281 }
8382}
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import kotlin.test.Test
88import kotlin.time.Duration.Companion.microseconds
99import kotlin.time.Duration.Companion.seconds
1010
11- class PaymentsTest {
12- private val logger = ElapsedTimeLogger (" PaymentsTest " )
11+ class PaymentsFlowDurationTest {
12+ private val logger = ElapsedTimeLogger (" PaymentsFlowDurationTest " )
1313 private val context = Dispatchers .Default + SupervisorJob ()
1414
1515 @Test
You can’t perform that action at this time.
0 commit comments