org.tap4j.ext.jmeter.model.AssertionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tap4j-ext Show documentation
Show all versions of tap4j-ext Show documentation
TAP extensions to support JUnit and TestNG
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.05.19 at 08:25:57 PM NZST
//
package org.tap4j.ext.jmeter.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AssertionResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AssertionResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="failure" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="failureMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AssertionResult", propOrder = {
"name",
"failure",
"error",
"failureMessage"
})
public class AssertionResult {
protected String name;
protected Boolean failure;
protected Boolean error;
protected String failureMessage;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the failure property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFailure() {
return failure;
}
/**
* Sets the value of the failure property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFailure(Boolean value) {
this.failure = value;
}
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setError(Boolean value) {
this.error = value;
}
/**
* Gets the value of the failureMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFailureMessage() {
return failureMessage;
}
/**
* Sets the value of the failureMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFailureMessage(String value) {
this.failureMessage = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy