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

org.unitils.TestRunnerAccessor Maven / Gradle / Ivy


package org.unitils;

import java.lang.reflect.Method;

/**
 * Interface to expose the capability of executing test methods to the outside
 * world.
 * 
 * @author jef
 */
public interface TestRunnerAccessor {

    /**
     * Execute a test method on a given tested object.
     * @param testedObject
     * @param testMethod 
     */
    void executeTestMethod(Object testedObject, Method testMethod);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy