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>
checkedTestEngines
private java.util.List<EngineFilter>
engineFilters
private static org.junit.platform.commons.logging.Logger
LOGGER
-
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 void
checkNoUnmatchedIncludeFilter()
private java.lang.String
getRegisteredEnginesDescription()
private java.lang.String
getRegisteredFiltersDescription()
private java.lang.String
getStateDescription()
private java.util.SortedSet<java.lang.String>
getUnmatchedEngineIdsOfIncludeFilters()
(package private) boolean
isExcluded(TestEngine testEngine)
(package private) void
performSanityChecks()
private void
warnIfAllEnginesExcluded()
-
-
-
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()
-
-