| Interface | Description |
|---|---|
| TestSelector |
A way of matching a test-method in a test-class, and saying whether or not to include any matches
in a test run.
|
| Class | Description |
|---|---|
| PatternTestSelector |
A
TestDescription will match if this selector's class-part is a substring of the TestDescription's full class-name, or if this selector's class-name, when interpreted as a
java.util.regex regular-expression, matches the TestDescription's full class-name. |
| SimpleTestSelector |
A
TestDescription will match if this selector's class-part is identical to the
TestDescriptions class name (same for the method name). |
| TestDescription |
A non-JUnit specific way of describing a test-method inside a test-class.
|
| TestSelectorList |
A collection of
PatternTestSelector instances which, as a group, can decide whether or
not to include a given TestDescription. |
| TestSelectorList.Builder |
Build a new
TestSelectorList from a list of strings, each of which is parsed by PatternTestSelector. |
| Exception | Description |
|---|---|
| TestSelectorParseException |
Errors specific to parsing test selectors.
|
| Annotation Type | Description |
|---|---|
| Nullable |
Defining @Nullable locally here because we cannot import javax.annotation.Nullable; according to
comment in src/com/facebook/buck/test/selectors/BUCK
|