public class TestResult
extends java.lang.Object
implements java.io.Serializable
Java class for TestResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TestResult"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="EndTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="TestSuiteName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="ToolName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="TestCases" type="{http://flexagon.com/deploy/testing}TestCase" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
description |
protected java.util.Calendar |
endTime |
protected java.util.Calendar |
startTime |
protected java.util.List<TestCase> |
testCases |
protected java.lang.String |
testSuiteName |
protected java.lang.String |
toolName |
Constructor and Description |
---|
TestResult() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription()
Gets the value of the description property.
|
java.util.Calendar |
getEndTime()
Gets the value of the endTime property.
|
java.util.Calendar |
getStartTime()
Gets the value of the startTime property.
|
java.util.List<TestCase> |
getTestCases()
Gets the value of the testCases property.
|
java.lang.String |
getTestSuiteName()
Gets the value of the testSuiteName property.
|
java.lang.String |
getToolName()
Gets the value of the toolName property.
|
void |
setDescription(java.lang.String value)
Sets the value of the description property.
|
void |
setEndTime(java.util.Calendar value)
Sets the value of the endTime property.
|
void |
setStartTime(java.util.Calendar value)
Sets the value of the startTime property.
|
void |
setTestSuiteName(java.lang.String value)
Sets the value of the testSuiteName property.
|
void |
setToolName(java.lang.String value)
Sets the value of the toolName property.
|
protected java.util.Calendar startTime
protected java.util.Calendar endTime
protected java.lang.String testSuiteName
protected java.lang.String description
protected java.lang.String toolName
protected java.util.List<TestCase> testCases
public java.util.Calendar getStartTime()
String
public void setStartTime(java.util.Calendar value)
value
- allowed object is
String
public java.util.Calendar getEndTime()
String
public void setEndTime(java.util.Calendar value)
value
- allowed object is
String
public java.lang.String getTestSuiteName()
String
public void setTestSuiteName(java.lang.String value)
value
- allowed object is
String
public java.lang.String getDescription()
String
public void setDescription(java.lang.String value)
value
- allowed object is
String
public java.lang.String getToolName()
String
public void setToolName(java.lang.String value)
value
- allowed object is
String
public java.util.List<TestCase> getTestCases()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the testCases property.
For example, to add a new item, do as follows:
getTestCases().add(newItem);
Objects of the following type(s) are allowed in the list
TestCase