All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hawt.junit.JUnitService Maven / Gradle / Ivy

There is a newer version: 2.17.7
Show newest version
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