Uses of Interface
org.junit.platform.launcher.MethodFilter
-
Packages that use MethodFilter Package Description org.junit.platform.launcher Public API for configuring and launching test plans. -
-
Uses of MethodFilter in org.junit.platform.launcher
Classes in org.junit.platform.launcher that implement MethodFilter Modifier and Type Class Description (package private) classAbstractMethodFilterAbstractMethodFilterthat servers as a superclass for filters including or excluding fully qualified method names without parameters based on pattern-matching.(package private) classExcludeMethodFilterMethodFilterthat matches fully qualified method names against patterns in the form of regular expressions.(package private) classIncludeMethodFilterMethodFilterthat matches fully qualified method names against patterns in the form of regular expressions.Methods in org.junit.platform.launcher that return MethodFilter Modifier and Type Method Description static MethodFilterMethodFilter. excludeMethodNamePatterns(java.lang.String... patterns)Create a new excludeMethodFilterbased on the supplied patterns.static MethodFilterMethodFilter. excludeMethodNamePatterns(java.util.List<java.lang.String> patterns)Create a new excludeMethodFilterbased on the supplied patterns.static MethodFilterMethodFilter. includeMethodNamePatterns(java.lang.String... patterns)Create a new includeMethodFilterbased on the supplied patterns.static MethodFilterMethodFilter. includeMethodNamePatterns(java.util.List<java.lang.String> patterns)Create a new includeMethodFilterbased on the supplied patterns.
-