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

io.zonky.test.db.event.TestExecutionFinishedEvent Maven / Gradle / Ivy

Go to download

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