blob: 2eee23f8080b1b990e974d395b45f2a03b8cd6fc [file] [log] [blame]
/*
* Copyright (c) 2017 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.runners;
import org.mockito.internal.junit.TestFinishedEvent;
class DefaultTestFinishedEvent implements TestFinishedEvent {
private final Object testClassInstance;
private final String testMethodName;
private final Throwable failure;
DefaultTestFinishedEvent(Object testClassInstance, String testMethodName, Throwable failure) {
this.testClassInstance = testClassInstance;
this.testMethodName = testMethodName;
this.failure = failure;
}
@Override
public Object getTestClassInstance() {
return testClassInstance;
}
@Override
public String getTestMethodName() {
return testMethodName;
}
@Override
public Throwable getFailure() {
return failure;
}
}