org.junit.validator.TestClassValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit Show documentation
Show all versions of junit Show documentation
JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.
The newest version!
package org.junit.validator;
import java.util.List;
import org.junit.runners.model.TestClass;
/**
* Validates a single facet of a test class.
*
* @since 4.12
*/
public interface TestClassValidator {
/**
* Validate a single facet of a test class.
*
* @param testClass
* the {@link TestClass} that is validated.
* @return the validation errors found by the validator.
*/
public List validateTestClass(TestClass testClass);
}