public class Results
extends java.lang.Object
This class has the following attributes:
1. testDate (String)
2. testDetails (List<TestReport>)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
Results()
Constructs an object of Result
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getTestDate()
Returns the date of test result.
|
java.util.List<TestReport> |
getTestDetails()
Returns the list of TestDetails.
|
void |
setTestDate(java.lang.String testDate)
Sets the date of result.
|
void |
setTestDetails(java.util.List<TestReport> testDetails)
Sets the Test Details.
|
public java.lang.String getTestDate()
public void setTestDate(java.lang.String testDate)
testDate - Specifies the date of Resultpublic java.util.List<TestReport> getTestDetails()
public void setTestDetails(java.util.List<TestReport> testDetails)
testDetails - Specifies list of Test Reports