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

org.mockito.internal.junit.DefaultTestFinishedEvent Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2018 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.junit;

public class DefaultTestFinishedEvent implements TestFinishedEvent {
    private final Object testClassInstance;
    private final String testMethodName;
    private final Throwable testFailure;

    public DefaultTestFinishedEvent(
            Object testClassInstance, String testMethodName, Throwable testFailure) {
        this.testClassInstance = testClassInstance;
        this.testMethodName = testMethodName;
        this.testFailure = testFailure;
    }

    @Override
    public Throwable getFailure() {
        return testFailure;
    }

    @Override
    public String getTestName() {
        return testClassInstance.getClass().getSimpleName() + "." + testMethodName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy