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

org.constretto.test.extender.RuleExtender Maven / Gradle / Ivy

The newest version!
package org.constretto.test.extender;

import org.junit.runner.Description;

/**
 * @author zapodot
 */
public interface RuleExtender extends AutoCloseable {

    /**
     * Pre-test hook
     */
    void setup(final Description testDescription);

    /**
     * Run post tests to do cleanup
     */
    @Override
    void close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy