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

io.dropwizard.testing.junit5.DropwizardExtension Maven / Gradle / Ivy

There is a newer version: 5.0.0-alpha.2
Show newest version
package io.dropwizard.testing.junit5;

/**
 * {@link DropwizardExtensionsSupport} class uses this interface to find fields fields in test class instance and test
 * class
 */
public interface DropwizardExtension {

    /**
     * Executed before test method or class.
     */
    void before() throws Throwable;

    /**
     * Executed after test method or class.
     */
    void after() throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy