Class TestResult

java.lang.Object
flexagon.fd.core.testing.jaxb.TestResult
All Implemented Interfaces:
Serializable

public class TestResult extends Object implements 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 Details

    • startTime

      protected Calendar startTime
    • endTime

      protected Calendar endTime
    • testSuiteName

      protected String testSuiteName
    • description

      protected String description
    • toolName

      protected String toolName
    • testCases

      protected List<TestCase> testCases
  • Constructor Details

    • TestResult

      public TestResult()
  • Method Details

    • getStartTime

      public Calendar getStartTime()
      Gets the value of the startTime property.
      Returns:
      possible object is String
    • setStartTime

      public void setStartTime(Calendar value)
      Sets the value of the startTime property.
      Parameters:
      value - allowed object is String
    • getEndTime

      public Calendar getEndTime()
      Gets the value of the endTime property.
      Returns:
      possible object is String
    • setEndTime

      public void setEndTime(Calendar value)
      Sets the value of the endTime property.
      Parameters:
      value - allowed object is String
    • getTestSuiteName

      public String getTestSuiteName()
      Gets the value of the testSuiteName property.
      Returns:
      possible object is String
    • setTestSuiteName

      public void setTestSuiteName(String value)
      Sets the value of the testSuiteName property.
      Parameters:
      value - allowed object is String
    • getDescription

      public String getDescription()
      Gets the value of the description property.
      Returns:
      possible object is String
    • setDescription

      public void setDescription(String value)
      Sets the value of the description property.
      Parameters:
      value - allowed object is String
    • getToolName

      public String getToolName()
      Gets the value of the toolName property.
      Returns:
      possible object is String
    • setToolName

      public void setToolName(String value)
      Sets the value of the toolName property.
      Parameters:
      value - allowed object is String
    • getTestCases

      public List<TestCase> 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 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