Source : JUnit 5, Eclipse 4.8 , Selenium
I can write up and execute Selenium script without any special test framework but I wanted to use Junit 5 (because we have depe
I also got ParameterResolutionException with JUnit 5.
org.junit.jupiter.api.extension.ParameterResolutionException:
No ParameterResolver registered for parameter [int[] arg0] in constructor (public my_package.MyClass(int[]))
I had written @Test methods inside the class I was testing.
This error could be fixed in two ways:
1) Either replacing import org.junit.jupiter.api.Test with import org.junit.Test, or
2) Writing tests in a separate TestClass.