Package flexagon.fd.core.testing.jaxb
Class TestResult
java.lang.Object
flexagon.fd.core.testing.jaxb.TestResult
- All Implemented Interfaces:
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>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the description property.Gets the value of the endTime property.Gets the value of the startTime property.Gets the value of the testCases property.Gets the value of the testSuiteName property.Gets the value of the toolName property.voidsetDescription(String value) Sets the value of the description property.voidsetEndTime(Calendar value) Sets the value of the endTime property.voidsetStartTime(Calendar value) Sets the value of the startTime property.voidsetTestSuiteName(String value) Sets the value of the testSuiteName property.voidsetToolName(String value) Sets the value of the toolName property.
-
Field Details
-
startTime
-
endTime
-
testSuiteName
-
description
-
toolName
-
testCases
-
-
Constructor Details
-
TestResult
public TestResult()
-
-
Method Details
-
getStartTime
Gets the value of the startTime property.- Returns:
- possible object is
String
-
setStartTime
Sets the value of the startTime property.- Parameters:
value- allowed object isString
-
getEndTime
Gets the value of the endTime property.- Returns:
- possible object is
String
-
setEndTime
Sets the value of the endTime property.- Parameters:
value- allowed object isString
-
getTestSuiteName
Gets the value of the testSuiteName property.- Returns:
- possible object is
String
-
setTestSuiteName
Sets the value of the testSuiteName property.- Parameters:
value- allowed object isString
-
getDescription
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getToolName
Gets the value of the toolName property.- Returns:
- possible object is
String
-
setToolName
Sets the value of the toolName property.- Parameters:
value- allowed object isString
-
getTestCases
Gets the value of the testCases property.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
setmethod 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
-