org.junitpioneer.jupiter.IssueTestCase Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2023 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* http://www.eclipse.org/legal/epl-v20.html
*/
package org.junitpioneer.jupiter;
import static java.util.Objects.requireNonNull;
import java.util.Objects;
import org.junit.platform.engine.TestExecutionResult.Status;
/**
* Represents the execution result of test method, which is annotated with {@link Issue}.
*
* Once Pioneer baselines against Java 17, this will be a record.
*
* @since 1.1
* @see Issue
* @see IssueProcessor
*/
public final class IssueTestCase {
private static final String NO_RESULT_EXCEPTION_MESSAGE = "The test case result should never be null (Nicolai thinks). If you see this exception, he was wrong - please open an issue at https://github.com/junit-pioneer/junit-pioneer/issues/new/choose .";
private final String testId;
private final Status result;
/**
* Constructor with all attributes.
*
* @param testId Unique name of the test method
* @param result Result of the execution
*/
public IssueTestCase(String testId, Status result) {
this.testId = requireNonNull(testId);
this.result = requireNonNull(result, NO_RESULT_EXCEPTION_MESSAGE);
}
/**
* Returns the unique name of the test method.
* @return Unique name of the test method
*/
public String testId() {
return testId;
}
/**
* Returns the result of the test methods' execution.
*
* @return Result of the test methods' execution.
*/
public Status result() {
return result;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (!(o instanceof IssueTestCase))
return false;
IssueTestCase that = (IssueTestCase) o;
return testId.equals(that.testId) && result == that.result;
}
@Override
public int hashCode() {
return Objects.hash(testId, result);
}
@Override
public String toString() {
return "IssueTestCase{" + "uniqueName='" + testId + '\'' + ", result='" + result + '\'' + '}';
}
}