1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 18:29:39 +02:00

pgpainless-sop: reuse shared sop-java test suite

This commit is contained in:
Paul Schaub 2023-01-31 19:03:11 +01:00
parent f4bd17ade8
commit d53cd6d0bd
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
11 changed files with 152 additions and 0 deletions

View file

@ -21,10 +21,14 @@ dependencies {
// Logging
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// Depend on "shared" sop-java test suite (fixtures are turned into tests by inheritance inside test sources)
testImplementation(testFixtures("org.pgpainless:sop-java:$sopJavaVersion"))
implementation(project(":pgpainless-core"))
api "org.pgpainless:sop-java:$sopJavaVersion"
}
test {
useJUnitPlatform()
environment("test.implementation", "sop.testsuite.pgpainless.PGPainlessSopInstanceFactory")
}