Package com.sun.javatest
Interface TestFilter.Observer
-
- Enclosing class:
- TestFilter
public static interface TestFilter.Observer
An interface for notification about why a test has been filtered out.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
rejected(TestDescription d, TestFilter rejector)
Notification methodcalled when a test has been rejected.
-
-
-
Method Detail
-
rejected
void rejected(TestDescription d, TestFilter rejector)
Notification methodcalled when a test has been rejected.- Parameters:
d
- The test that has been rejected.rejector
- The filter rejecting the test.
-
-