Skip to content

Commit

Permalink
chore: add kotest.properties to the libs
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan committed Dec 19, 2024
1 parent 75c3a87 commit c2d0d53
Show file tree
Hide file tree
Showing 16 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/ktor-example/src/test/resources/kotest.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.stove.ktor.example.e2e.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.stove.spring.example.e2e.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.stove.spring.standalone.example.e2e.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.stove.spring.streams.example.e2e.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.couchbase.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.elasticsearch.Stove
1 change: 1 addition & 0 deletions lib/stove-testing-e2e-http/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies {
testImplementation(projects.lib.stoveTestingE2eWiremock)
testImplementation(libs.jackson.jsr310)
testImplementation(testFixtures(projects.lib.stoveTestingE2e))
testImplementation(libs.logback.classic)
}

tasks.test.configure {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.http.Stove
20 changes: 20 additions & 0 deletions lib/stove-testing-e2e-http/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>
%white([%t]) %highlight(%-5level) %magenta(%c{1}) %cyan(trace.id:%X{traceId} version:%X{version}) -
%yellow(%m) %n
</pattern>
</encoder>
</appender>

<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>
<logger name="org.testcontainers" level="WARN"/>
<logger name="tc" level="OFF"/>
<logger name="com.github.dockerjava" level="OFF"/>
<logger name="com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire" level="OFF"/>
<logger name="org.apache" level="OFF"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.standalone.kafka.setup.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.mongodb.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.rdbms.mssql.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.rdbms.postgres.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.redis.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.wiremock.Stove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.kafka.Setup

0 comments on commit c2d0d53

Please sign in to comment.