File tree Expand file tree Collapse file tree 4 files changed +7
-11
lines changed
src/test/kotlin/aws/sdk/kotlin/hll/codegen Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,7 @@ dependencies {
3030 api(project(" :aws-runtime:aws-core" ))
3131 implementation(libs.ksp.api)
3232 implementation(libs.smithy.kotlin.runtime.core)
33-
34- testImplementation(libs.junit.jupiter)
35- testImplementation(libs.junit.jupiter.params)
36- testImplementation(libs.kotest.assertions.core.jvm)
37- testImplementation(libs.kotlin.test.junit5)
33+ testImplementation(kotlin(" test" ))
3834}
3935
4036val sourcesJar by tasks.creating(Jar ::class ) {
Original file line number Diff line number Diff line change 44 */
55package aws.sdk.kotlin.hll.codegen.core
66
7- import org.junit.jupiter.api.Assertions .assertEquals
8- import org.junit.jupiter.api .Test
7+ import kotlin.test .assertEquals
8+ import kotlin.test .Test
99import kotlin.test.assertFailsWith
1010
1111class TemplateEngineTest {
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ package aws.sdk.kotlin.hll.codegen.core
66
77import aws.sdk.kotlin.hll.codegen.model.TypeRef
88import aws.sdk.kotlin.hll.codegen.model.TypeVar
9- import org.junit.jupiter.api.Assertions .assertEquals
10- import org.junit.jupiter.api .Test
9+ import kotlin.test .assertEquals
10+ import kotlin.test .Test
1111import kotlin.test.assertContains
1212
1313class TemplateProcessorTest {
Original file line number Diff line number Diff line change 44 */
55package aws.sdk.kotlin.hll.codegen.util
66
7- import org.junit.jupiter.api.Assertions .assertEquals
8- import org.junit.jupiter.api .Test
7+ import kotlin.test .assertEquals
8+ import kotlin.test .Test
99
1010class StringsTest {
1111 @Test
You can’t perform that action at this time.
0 commit comments