Package org.apache.sling.junit
Interface TestSelector
-
- All Known Implementing Classes:
RequestParser
public interface TestSelector
Used by theTestsManager
to select which tests to run
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
acceptTestName(java.lang.String testName)
If true, testName will be selectedjava.lang.String
getExtension()
Return the extension used to render resultsjava.lang.String
getSelectedTestMethodName()
If not null, only test methods having this name are executedjava.lang.String
getTestSelectorString()
Return the String used to select tests
-
-
-
Method Detail
-
acceptTestName
boolean acceptTestName(java.lang.String testName)
If true, testName will be selected
-
getSelectedTestMethodName
java.lang.String getSelectedTestMethodName()
If not null, only test methods having this name are executed
-
getTestSelectorString
java.lang.String getTestSelectorString()
Return the String used to select tests
-
getExtension
java.lang.String getExtension()
Return the extension used to render results
-
-