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

cloud.localstack.LocalstackExtension Maven / Gradle / Ivy

There is a newer version: 0.2.23
Show newest version
package cloud.localstack;

import org.junit.jupiter.api.extension.BeforeTestExecutionCallback;
import org.junit.jupiter.api.extension.ExtensionContext;

/**
 * Simple JUnit extension for JUnit 5.
 *
 * @author Patrick Allain
 */
public class LocalstackExtension implements BeforeTestExecutionCallback {

    @Override
    public void beforeTestExecution(final ExtensionContext context) {
        Localstack.INSTANCE.setupInfrastructure();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy