Package org.junit.platform.launcher
Class EngineFilter
- java.lang.Object
-
- org.junit.platform.launcher.EngineFilter
-
- All Implemented Interfaces:
org.junit.platform.engine.Filter<org.junit.platform.engine.TestEngine>
@API(status=STABLE, since="1.0") public class EngineFilter extends java.lang.Object implements org.junit.platform.engine.Filter<org.junit.platform.engine.TestEngine>AnEngineFilteris applied to allTestEnginesbefore they are used.Warning: be cautious when registering multiple competing
includeEngineFiltersor multiple competingexcludeEngineFiltersfor the same discovery request since doing so will likely lead to undesirable results (i.e., zero engines being active).- Since:
- 1.0
- See Also:
includeEngines(String...),excludeEngines(String...),LauncherDiscoveryRequest
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.junit.platform.engine.FilterResultapply(org.junit.platform.engine.TestEngine testEngine)static EngineFilterexcludeEngines(java.lang.String... engineIds)Create a new excludeEngineFilterbased on the supplied engine IDs.static EngineFilterexcludeEngines(java.util.List<java.lang.String> engineIds)Create a new excludeEngineFilterbased on the supplied engine IDs.static EngineFilterincludeEngines(java.lang.String... engineIds)Create a new includeEngineFilterbased on the supplied engine IDs.static EngineFilterincludeEngines(java.util.List<java.lang.String> engineIds)Create a new includeEngineFilterbased on the supplied engine IDs.java.lang.StringtoString()
-
-
-
Method Detail
-
includeEngines
public static EngineFilter includeEngines(java.lang.String... engineIds)
Create a new includeEngineFilterbased on the supplied engine IDs.Only
TestEngineswith matching engine IDs will be included within the test discovery and execution.- Parameters:
engineIds- the list of engine IDs to match against; nevernullor empty; individual IDs must also not be null or blank- See Also:
includeEngines(String...)
-
includeEngines
public static EngineFilter includeEngines(java.util.List<java.lang.String> engineIds)
Create a new includeEngineFilterbased on the supplied engine IDs.Only
TestEngineswith matching engine IDs will be included within the test discovery and execution.- Parameters:
engineIds- the list of engine IDs to match against; nevernullor empty; individual IDs must also not be null or blank- See Also:
includeEngines(String...)
-
excludeEngines
public static EngineFilter excludeEngines(java.lang.String... engineIds)
Create a new excludeEngineFilterbased on the supplied engine IDs.TestEngineswith matching engine IDs will be excluded from test discovery and execution.- Parameters:
engineIds- the list of engine IDs to match against; nevernullor empty; individual IDs must also not be null or blank- See Also:
excludeEngines(List)
-
excludeEngines
public static EngineFilter excludeEngines(java.util.List<java.lang.String> engineIds)
Create a new excludeEngineFilterbased on the supplied engine IDs.TestEngineswith matching engine IDs will be excluded from test discovery and execution.- Parameters:
engineIds- the list of engine IDs to match against; nevernullor empty; individual IDs must also not be null or blank- See Also:
includeEngines(String...)
-
apply
public org.junit.platform.engine.FilterResult apply(org.junit.platform.engine.TestEngine testEngine)
- Specified by:
applyin interfaceorg.junit.platform.engine.Filter<org.junit.platform.engine.TestEngine>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-