Package org.junit.validator
Interface TestClassValidator
-
- All Known Implementing Classes:
AnnotationsValidator
,PublicClassValidator
public interface TestClassValidator
Validates a single facet of a test class.- Since:
- 4.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Exception>
validateTestClass(TestClass testClass)
Validate a single facet of a test class.
-
-
-
Method Detail
-
validateTestClass
java.util.List<java.lang.Exception> validateTestClass(TestClass testClass)
Validate a single facet of a test class.- Parameters:
testClass
- theTestClass
that is validated.- Returns:
- the validation errors found by the validator.
-
-