io.hawt.junit.JUnitService Maven / Gradle / Ivy
package io.hawt.junit;
import java.lang.reflect.Method;
import java.util.List;
public interface JUnitService {
List findTestMethods(Class> clazz) throws Exception;
List filterTestMethods(List methods, String filter);
Method findBefore(Class> clazz) throws Exception;
Method findBeforeClass(Class> clazz) throws Exception;
Method findAfter(Class> clazz) throws Exception;
Method findAfterClass(Class> clazz) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy