io.zonky.test.db.event.TestExecutionFinishedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-database-spring-test Show documentation
Show all versions of embedded-database-spring-test Show documentation
A library for creating isolated embedded databases for Spring-powered integration tests.
The newest version!
package io.zonky.test.db.event;
import org.springframework.context.ApplicationEvent;
import java.lang.reflect.Method;
public class TestExecutionFinishedEvent extends ApplicationEvent {
private final Method testMethod;
public TestExecutionFinishedEvent(Object source, Method testMethod) {
super(source);
this.testMethod = testMethod;
}
public Method getTestMethod() {
return testMethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy