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

ru.yandex.qatools.allure.events.AbstractTestCaseStartedEvent Maven / Gradle / Ivy

The newest version!

package ru.yandex.qatools.allure.events;

import java.util.ArrayList;
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;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
import ru.yandex.qatools.allure.model.Description;
import ru.yandex.qatools.allure.model.Label;


/**
 * 

Java class for abstract-test-case-started-event complex type. * *

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

 * <complexType name="abstract-test-case-started-event">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="suiteUid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{urn:events.allure.qatools.yandex.ru}description"/>
 *         <element name="labels" type="{urn:events.allure.qatools.yandex.ru}labels" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "abstract-test-case-started-event", propOrder = { }) public abstract class AbstractTestCaseStartedEvent implements Equals, HashCode, TestCaseEvent { @XmlElement(required = true) protected String suiteUid; @XmlElement(required = true) protected String name; @XmlElement(required = true, nillable = true) protected String title; @XmlElement(required = true, nillable = true) protected Description description; @XmlElementWrapper(name = "labels") @XmlElement(name = "label") protected List




© 2015 - 2025 Weber Informatics LLC | Privacy Policy