cloud.localstack.deprecated.LocalstackExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
The newest version!
package cloud.localstack.deprecated;
import org.junit.jupiter.api.extension.BeforeTestExecutionCallback;
import org.junit.jupiter.api.extension.ExtensionContext;
/**
* Simple JUnit extension for JUnit 5.
*
* @author Patrick Allain
*/
@Deprecated
public class LocalstackExtension implements BeforeTestExecutionCallback {
@Override
public void beforeTestExecution(final ExtensionContext context) {
Localstack.INSTANCE.setupInfrastructure();
}
}