Class MoreJUnitMatchers
java.lang.Object
tech.picnic.errorprone.bugpatterns.util.MoreJUnitMatchers
A collection of JUnit-specific helper methods and
Matchers.
These constants and methods are additions to the ones found in JUnitMatchers.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> Matches methods that have aMethodSourceannotation.static final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> Matches JUnit Jupiter setup and teardown methods.static final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> Matches JUnit Jupiter test methods. -
Method Summary
-
Field Details
-
TEST_METHOD
public static final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> TEST_METHODMatches JUnit Jupiter test methods. -
SETUP_OR_TEARDOWN_METHOD
public static final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> SETUP_OR_TEARDOWN_METHODMatches JUnit Jupiter setup and teardown methods. -
HAS_METHOD_SOURCE
public static final com.google.errorprone.matchers.MultiMatcher<MethodTree,AnnotationTree> HAS_METHOD_SOURCEMatches methods that have aMethodSourceannotation.
-