io.qameta.allure.model.TestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure2-model-pojo Show documentation
Show all versions of allure2-model-pojo Show documentation
Module contains Allure2 model pojo
package io.qameta.allure.model;
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.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:model.allure.qameta.io}ExecutableItem">
* <sequence>
* <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="historyId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="labels" type="{urn:model.allure.qameta.io}Labels" minOccurs="0"/>
* <element name="links" type="{urn:model.allure.qameta.io}Links" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TestResult", propOrder = {
"uuid",
"historyId",
"fullName",
"labels",
"links"
})
public class TestResult
extends ExecutableItem
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(required = true)
protected String uuid;
@XmlElement(required = true)
protected String historyId;
@XmlElement(required = true)
protected String fullName;
@XmlElementWrapper
@XmlElement(name = "label")
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy