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

io.qameta.allure.entity.TestResult Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version

package io.qameta.allure.entity;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TestResult complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TestResult">
 *   <complexContent>
 *     <extension base="{urn:entity.allure.qameta.io}ExtraElements">
 *       <sequence>
 *         <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="historyId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="testId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="time" type="{urn:entity.allure.qameta.io}Time"/>
 *         <element name="status" type="{urn:entity.allure.qameta.io}Status"/>
 *         <element name="statusDetails" type="{urn:entity.allure.qameta.io}StatusDetails" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="descriptionHtml" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="beforeStages" type="{urn:entity.allure.qameta.io}BeforeStagesResults" minOccurs="0"/>
 *         <element name="testStage" type="{urn:entity.allure.qameta.io}StageResult" minOccurs="0"/>
 *         <element name="afterStages" type="{urn:entity.allure.qameta.io}AfterStagesResults" minOccurs="0"/>
 *         <element name="labels" type="{urn:entity.allure.qameta.io}Labels" minOccurs="0"/>
 *         <element name="parameters" type="{urn:entity.allure.qameta.io}Parameters" minOccurs="0"/>
 *         <element name="links" type="{urn:entity.allure.qameta.io}Links" minOccurs="0"/>
 *         <element name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TestResult", propOrder = { "uid", "name", "fullName", "historyId", "testId", "time", "status", "statusDetails", "description", "descriptionHtml", "beforeStages", "testStage", "afterStages", "labels", "parameters", "links", "hidden" }) public class TestResult extends ExtraElements implements Serializable, WithDescription, WithLabels, WithLinks, WithName, WithSource, WithStatus, WithStatusDetails, WithTime { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String uid; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String fullName; @XmlElement(required = true) protected String historyId; @XmlElement(required = true) protected String testId; @XmlElement(required = true) protected Time time; @XmlElement(required = true) @XmlSchemaType(name = "string") protected Status status; protected StatusDetails statusDetails; protected String description; protected String descriptionHtml; @XmlElementWrapper @XmlElement(name = "beforeStageResult") protected List beforeStages; protected StageResult testStage; @XmlElementWrapper @XmlElement(name = "afterStageResult") protected List afterStages; @XmlElementWrapper @XmlElement(name = "label") protected List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy