Interface GenericTestPattern<P,C,M>
-
- Type Parameters:
P
- resolved atomic test, object oriented - not necessary to be a stringC
- test class, or null if not mandatoryM
- test method, or null if not mandatory
- All Superinterfaces:
TestFilter<C,M>
- All Known Implementing Classes:
TestListResolver
public interface GenericTestPattern<P,C,M> extends TestFilter<C,M>
Resolves string test patterns in object oriented patternsP
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<P>
getExcludedPatterns()
java.util.Set<P>
getIncludedPatterns()
java.lang.String
getPluginParameterTest()
boolean
hasExcludedMethodPatterns()
boolean
hasIncludedMethodPatterns()
boolean
hasMethodPatterns()
boolean
isEmpty()
-
Methods inherited from interface org.apache.maven.surefire.testset.TestFilter
shouldRun
-
-
-
-
Method Detail
-
hasIncludedMethodPatterns
boolean hasIncludedMethodPatterns()
-
hasExcludedMethodPatterns
boolean hasExcludedMethodPatterns()
-
hasMethodPatterns
boolean hasMethodPatterns()
-
isEmpty
boolean isEmpty()
-
getPluginParameterTest
java.lang.String getPluginParameterTest()
-
getIncludedPatterns
java.util.Set<P> getIncludedPatterns()
-
getExcludedPatterns
java.util.Set<P> getExcludedPatterns()
-
-