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

org.spincast.testing.utils.IBeforeAfterClassMethodsProvider Maven / Gradle / Ivy

package org.spincast.testing.utils;

/**
 * Provides methods that can be called before and after tests from a 
 * class are ran.
 * 
 * To use with {@link org.spincast.testing.utils.SpincastJUnitRunner SpincastJUnitRunner}.
 */
public interface IBeforeAfterClassMethodsProvider {

    /**
     * Called before the tests of the class are ran.
     */
    public void beforeClass();

    /**
     * Called after the tests of the class are ran.
     * 

* This will only be called if the beforeClass() * method completed successfully, so you can be sure that * the instanciation of the class is complete here. *

*/ public void afterClass(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy