Skip to content

Commit

Permalink
chore: remove task.test configuration for kotest fqn since kotest.pro…
Browse files Browse the repository at this point in the history
…perties handles that
  • Loading branch information
osoykan committed Dec 19, 2024
1 parent da4a4fe commit 7de8dde
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 52 deletions.
4 changes: 0 additions & 4 deletions examples/ktor-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ dependencies {
testImplementation(projects.stove.starters.ktor.stoveKtorTestingE2e)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.stove.ktor.example.e2e.Stove")
}

repositories {
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
Expand Down
4 changes: 0 additions & 4 deletions examples/spring-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,4 @@ dependencies {
testImplementation(projects.stove.starters.spring.stoveSpringTestingE2eKafka)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.stove.spring.example.e2e.Stove")
}

application { mainClass.set("stove.spring.example.ExampleAppkt") }
4 changes: 0 additions & 4 deletions examples/spring-standalone-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,4 @@ dependencies {
testImplementation(projects.stove.starters.spring.stoveSpringTestingE2e)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.stove.spring.standalone.example.e2e.Stove")
}

application { mainClass.set("stove.spring.standalone.example.ExampleAppkt") }
4 changes: 0 additions & 4 deletions examples/spring-streams-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ dependencies {

application { mainClass.set("stove.spring.streams.example.ExampleAppkt") }

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.stove.spring.streams.example.e2e.Stove")
}

java.sourceSets["main"].java {
srcDir("build/generated/source/proto/main/java")
srcDir("build/generated/source/proto/main/kotlin")
Expand Down
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-couchbase/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,3 @@ dependencies {
dependencies {
testImplementation(libs.slf4j.simple)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.couchbase.Stove")
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-elasticsearch/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,3 @@ dependencies {
dependencies {
testImplementation(libs.slf4j.simple)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.elasticsearch.Stove")
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-http/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,3 @@ dependencies {
testImplementation(testFixtures(projects.lib.stoveTestingE2e))
testImplementation(libs.logback.classic)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.http.Stove")
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-kafka/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ buildscript {
}
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.standalone.kafka.setup.Stove")
}

wire {
sourcePath("src/main/proto")
kotlin {
Expand Down
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ dependencies {
implementation(libs.kotlinx.core)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.mongodb.Stove")
}

dependencies {
testImplementation(libs.logback.classic)
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-rdbms-mssql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@ dependencies {
api(libs.testcontainers.mssql)
api(libs.microsoft.sqlserver.jdbc)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.rdbms.mssql.Stove")
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-rdbms-postgres/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,3 @@ dependencies {
api(libs.postgresql)
testImplementation(libs.logback.classic)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.rdbms.postgres.Stove")
}
4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-redis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,3 @@ dependencies {
api(libs.testcontainers.redis)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.redis.Stove")
}

4 changes: 0 additions & 4 deletions lib/stove-testing-e2e-wiremock/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@ dependencies {
api(libs.wiremock.standalone)
api(libs.caffeine)
}

tasks.test.configure {
systemProperty("kotest.framework.config.fqn", "com.trendyol.stove.testing.e2e.wiremock.Stove")
}

0 comments on commit 7de8dde

Please sign in to comment.