org.allurefw.report.entity.TestCaseResult Maven / Gradle / Ivy
The newest version!
package org.allurefw.report.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 TestCaseResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TestCaseResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="time" type="{urn:entity.report.allurefw.org}Time"/>
* <element name="status" type="{urn:entity.report.allurefw.org}Status"/>
* <element name="failure" type="{urn:entity.report.allurefw.org}Failure" 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="steps" type="{urn:entity.report.allurefw.org}Steps" minOccurs="0"/>
* <element name="attachments" type="{urn:entity.report.allurefw.org}Attachments" minOccurs="0"/>
* <element name="labels" type="{urn:entity.report.allurefw.org}Labels" minOccurs="0"/>
* <element name="parameters" type="{urn:entity.report.allurefw.org}Parameters" minOccurs="0"/>
* <element name="links" type="{urn:entity.report.allurefw.org}Links" minOccurs="0"/>
* <element name="environment" type="{urn:entity.report.allurefw.org}Environment" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TestCaseResult", propOrder = {
})
public class TestCaseResult implements Serializable, WithAttachments, WithDescription, WithFailure, WithLabels, WithName, WithSource, WithStatus, WithSteps, WithSummary, WithTestCaseInfo, WithTime
{
private final static long serialVersionUID = 1L;
@XmlElement(required = true)
protected String uid;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected Time time;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected Status status;
protected Failure failure;
protected String description;
protected String descriptionHtml;
@XmlElementWrapper
@XmlElement(name = "step")
protected List steps;
@XmlElementWrapper
@XmlElement(name = "attachment")
protected List attachments;
@XmlElementWrapper
@XmlElement(name = "label")
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy