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 virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
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);
}