Spek plugins fails to discover method in Runtime and throws the exception: NoSuchMethodError Exception

189 Views Asked by At

I'm using Spek plugin for Junit testing with Gradle build tool in the IDEA-2018.2 Here are dependency version for the above-

ext.junitPlatformVersion = '1.0.0'
ext.spekVersion = '1.1.5'

Dependency-

testRuntime "org.junit.platform:junit-platform-launcher:$junitPlatformVersion"

When running throw the ./gradlew test it tests well without any errors but when running through the Spek Run in that test file then it throws the following error-

java.lang.NoSuchMethodError: com.company.Class.method(Linput1; Linput2) Lio/reactivex/Single;

Due to the company's privacy didn't write actual class name and method. Would any help be appreciated?

1

There are 1 best solutions below

10
On

The dependency that you have added and the one used might be different at runtime, have a double check of all the dependencies that you are using. It clearly says that the method is not available and if you knew it exists then definitely it might be removed (in newer versions) or that method does not exists (in older versions it didn't have that method).