io.qameta.allure.model.TestResult Maven / Gradle / Ivy
/*
* Copyright 2016-2024 Qameta Software Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.qameta.allure.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/**
* The model object that stores information about test that was run.
* Test results are the main entity of Allure.
*
* @author baev (Dmitry Baev)
* @see io.qameta.allure.model.ExecutableItem
* @see io.qameta.allure.model.WithAttachments
* @see io.qameta.allure.model.WithLinks
* @see io.qameta.allure.model.WithParameters
* @see io.qameta.allure.model.WithStatus
* @see io.qameta.allure.model.WithStatusDetails
* @see io.qameta.allure.model.WithSteps
* @since 2.0
*/
@SuppressWarnings({"PMD.TooManyMethods", "PMD.ExcessivePublicCount"})
public class TestResult implements Serializable, ExecutableItem, WithLinks {
private static final long serialVersionUID = 1L;
private String uuid;
private String historyId;
private String testCaseId;
private String testCaseName;
private String fullName;
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy