Uses of Interface
org.junit.platform.engine.DiscoveryFilter
-
Packages that use DiscoveryFilter Package Description org.junit.platform.engine Public API for test engines.org.junit.platform.engine.discovery org.junit.platform.launcher.core Core support classes for theLauncherincluding theLauncherFactoryand theLauncherDiscoveryRequestBuilder.org.junit.platform.testkit.engine Test Kit for testing the execution of aTestEnginerunning on the JUnit Platform. -
-
Uses of DiscoveryFilter in org.junit.platform.engine
Methods in org.junit.platform.engine with type parameters of type DiscoveryFilter Modifier and Type Method Description <T extends DiscoveryFilter<?>>
java.util.List<T>EngineDiscoveryRequest. getFiltersByType(java.lang.Class<T> filterType)Get theDiscoveryFiltersfor this request, filtered by a particular type. -
Uses of DiscoveryFilter in org.junit.platform.engine.discovery
Subinterfaces of DiscoveryFilter in org.junit.platform.engine.discovery Modifier and Type Interface Description interfaceClassNameFilterDiscoveryFilterthat is applied to the name of aClass.interfacePackageNameFilterDiscoveryFilterthat is applied to the name of aPackage.Classes in org.junit.platform.engine.discovery that implement DiscoveryFilter Modifier and Type Class Description (package private) classAbstractClassNameFilterAbstractClassNameFilterthat servers as a superclass for filters including or excluding fully qualified class names based on pattern-matching.(package private) classExcludeClassNameFilterClassNameFilterthat matches fully qualified class names against patterns in the form of regular expressions.(package private) classExcludePackageNameFilterPackageNameFilterthat matches fully qualified package names that are not prefixed by one of the package names provided to the filter.(package private) classIncludeClassNameFilterClassNameFilterthat matches fully qualified class names against patterns in the form of regular expressions.(package private) classIncludePackageNameFilterPackageNameFilterthat matches fully qualified package names that are prefixed by one of the package names provided to the filter. -
Uses of DiscoveryFilter in org.junit.platform.launcher.core
Fields in org.junit.platform.launcher.core with type parameters of type DiscoveryFilter Modifier and Type Field Description private java.util.List<DiscoveryFilter<?>>DefaultDiscoveryRequest. discoveryFiltersprivate java.util.List<DiscoveryFilter<?>>LauncherDiscoveryRequestBuilder. discoveryFiltersMethods in org.junit.platform.launcher.core with type parameters of type DiscoveryFilter Modifier and Type Method Description <T extends DiscoveryFilter<?>>
java.util.List<T>DefaultDiscoveryRequest. getFiltersByType(java.lang.Class<T> filterType) -
Uses of DiscoveryFilter in org.junit.platform.testkit.engine
Methods in org.junit.platform.testkit.engine with parameters of type DiscoveryFilter Modifier and Type Method Description EngineTestKit.BuilderEngineTestKit.Builder. filters(DiscoveryFilter<?>... filters)Deprecated.Please useEngineTestKit.Builder.filters(Filter...)instead.
-