Package org.junit.platform.launcher.core
Class EngineFilterer
- java.lang.Object
-
- org.junit.platform.launcher.core.EngineFilterer
-
class EngineFilterer extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<TestEngine,java.lang.Boolean>checkedTestEnginesprivate java.util.List<EngineFilter>engineFiltersprivate static org.junit.platform.commons.logging.LoggerLOGGER
-
Constructor Summary
Constructors Constructor Description EngineFilterer(java.util.List<EngineFilter> engineFilters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidcheckNoUnmatchedIncludeFilter()private java.lang.StringgetRegisteredEnginesDescription()private java.lang.StringgetRegisteredFiltersDescription()private java.lang.StringgetStateDescription()private java.util.SortedSet<java.lang.String>getUnmatchedEngineIdsOfIncludeFilters()(package private) booleanisExcluded(TestEngine testEngine)(package private) voidperformSanityChecks()private voidwarnIfAllEnginesExcluded()
-
-
-
Field Detail
-
LOGGER
private static final org.junit.platform.commons.logging.Logger LOGGER
-
engineFilters
private final java.util.List<EngineFilter> engineFilters
-
checkedTestEngines
private final java.util.Map<TestEngine,java.lang.Boolean> checkedTestEngines
-
-
Constructor Detail
-
EngineFilterer
EngineFilterer(java.util.List<EngineFilter> engineFilters)
-
-
Method Detail
-
isExcluded
boolean isExcluded(TestEngine testEngine)
-
performSanityChecks
void performSanityChecks()
-
warnIfAllEnginesExcluded
private void warnIfAllEnginesExcluded()
-
checkNoUnmatchedIncludeFilter
private void checkNoUnmatchedIncludeFilter()
-
getUnmatchedEngineIdsOfIncludeFilters
private java.util.SortedSet<java.lang.String> getUnmatchedEngineIdsOfIncludeFilters()
-
getStateDescription
private java.lang.String getStateDescription()
-
getRegisteredEnginesDescription
private java.lang.String getRegisteredEnginesDescription()
-
getRegisteredFiltersDescription
private java.lang.String getRegisteredFiltersDescription()
-
-