Class JUnitParameterMethodNotFound

java.lang.Object
com.google.errorprone.bugpatterns.BugChecker
com.google.errorprone.bugpatterns.JUnitParameterMethodNotFound
All Implemented Interfaces:
BugChecker.MethodTreeMatcher, Suppressible, Serializable

public class JUnitParameterMethodNotFound extends BugChecker implements BugChecker.MethodTreeMatcher
Checks if the methods specified in junitparams.Parameters annotation to provide parameters exists.

This checks for the required method in the current class and all the base classes. In case the required method is present in a superclass, this check would generate a false positive.

See Also: