Package org.apache.sling.junit
Interface TestSelector
- 
- All Known Implementing Classes:
 RequestParser
public interface TestSelectorUsed by theTestsManagerto select which tests to run 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanacceptTestName(java.lang.String testName)If true, testName will be selectedjava.lang.StringgetExtension()Return the extension used to render resultsjava.lang.StringgetSelectedTestMethodName()If not null, only test methods having this name are executedjava.lang.StringgetTestSelectorString()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 
 - 
 
 -