diff --git a/build.gradle.kts b/build.gradle.kts index 06bf949cd..b210fe2ab 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -103,6 +103,7 @@ dependencies { implementation(files("lib/standalone-runtime.jar")) implementation(files("lib/jacocoagent.jar")) implementation(files("lib/jacococli.jar")) + implementation(files("lib/opentest4j-1.1.1.jar")) implementation(files("lib/mockito-core-5.0.0.jar")) implementation(files("lib/byte-buddy-1.14.6.jar")) implementation(files("lib/byte-buddy-agent-1.14.6.jar")) diff --git a/core/src/main/kotlin/org/jetbrains/research/testspark/core/test/data/dependencies/TestCompilationDependencies.kt b/core/src/main/kotlin/org/jetbrains/research/testspark/core/test/data/dependencies/TestCompilationDependencies.kt index 622ab0c98..72baf689a 100644 --- a/core/src/main/kotlin/org/jetbrains/research/testspark/core/test/data/dependencies/TestCompilationDependencies.kt +++ b/core/src/main/kotlin/org/jetbrains/research/testspark/core/test/data/dependencies/TestCompilationDependencies.kt @@ -25,6 +25,10 @@ class TestCompilationDependencies { "byte-buddy-agent-1.14.6.jar", "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.14.6/byte-buddy-agent-1.14.6.jar", ), + JarLibraryDescriptor( + "opentest4j-1.1.1.jar", + "https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.1.1/", + ), ) } } diff --git a/lib/opentest4j-1.1.1.jar b/lib/opentest4j-1.1.1.jar new file mode 100644 index 000000000..3f355292e Binary files /dev/null and b/lib/opentest4j-1.1.1.jar differ