Uses of Class
org.junit.platform.commons.util.ClassFilter
-
Packages that use ClassFilter Package Description org.junit.platform.commons.util Internal common utilities for JUnit.org.junit.platform.engine.support.filter Filter-related support classes intended to be used by test engine implementations. -
-
Uses of ClassFilter in org.junit.platform.commons.util
Methods in org.junit.platform.commons.util that return ClassFilter Modifier and Type Method Description static ClassFilterClassFilter. of(Predicate<Class<?>> classPredicate)Create aClassFilterinstance that accepts all names but filters classes.static ClassFilterClassFilter. of(Predicate<String> namePredicate, Predicate<Class<?>> classPredicate)Create aClassFilterinstance that filters by names and classes.Methods in org.junit.platform.commons.util with parameters of type ClassFilter Modifier and Type Method Description static List<Class<?>>ReflectionUtils. findAllClassesInClasspathRoot(URI root, ClassFilter classFilter)static List<Class<?>>ModuleUtils. findAllClassesInModule(String moduleName, ClassFilter filter)Find all classes for the given module name.static List<Class<?>>ReflectionUtils. findAllClassesInModule(String moduleName, ClassFilter classFilter)static List<Class<?>>ReflectionUtils. findAllClassesInPackage(String basePackageName, ClassFilter classFilter) -
Uses of ClassFilter in org.junit.platform.engine.support.filter
Methods in org.junit.platform.engine.support.filter that return ClassFilter Modifier and Type Method Description static ClassFilterClasspathScanningSupport. buildClassFilter(EngineDiscoveryRequest request, Predicate<Class<?>> classPredicate)Build aClassFilterby combining the name predicate built byClasspathScanningSupport.buildClassNamePredicate(EngineDiscoveryRequest)and the passed-in class predicate.
-