Package | Description |
---|---|
com.ads.api.beans.tm |
Contains Collection Classes, Java Bean Classes which are specific to TestCases, TestSteps and TestValidations.
|
com.ads.api.util |
Contains Utility Classes, Collection Classes, Java Bean Classes which are specific to System, Environment, Table, Column, Mappings, Subject,
KeyValue Pairs etc...
|
Modifier and Type | Method and Description |
---|---|
TestCaseValidationStep |
TestCase.getValidationStep(java.lang.String name)
Returns the TestCaseValidationStep for the specified name.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,TestCaseValidationStep> |
TestCase.getValidationStepMap()
Returns the validationStepMap i.e it returns the details like testCaseId, validationStepId, validationStepName, status,
description, expectedResult, actualResult, comments etc... |
Modifier and Type | Method and Description |
---|---|
void |
TestCase.addValidationStep(java.lang.String name,
TestCaseValidationStep _validationStep)
Adds the stepName to validationStepMap.
|
Modifier and Type | Method and Description |
---|---|
void |
TestCase.setValidationStepMap(java.util.Map<java.lang.String,TestCaseValidationStep> _validationStepMap)
Sets the validationStepMap as specified.
|
Modifier and Type | Method and Description |
---|---|
TestCaseValidationStep |
TestManagerUtil.getValidationStep(int nodeId,
Node.NodeType nodeType,
java.lang.String testCaseName,
java.lang.String validationStepName)
Returns the TestCaseValidationStep Details such as StepName, StepType, Description,
ExpectedResult, ActualResult, StepComments and AuditHistory etc...
|
TestCaseValidationStep |
TestManagerUtil.getValidationStep(int testCaseId,
java.lang.String validationStepName)
Returns the TestCaseValidationStep object with Details such as StepName, StepType, Description,
ExpectedResult, ActualResult, StepComments and AuditHistory etc...of the specified testCaseId, validationStepName.
|
TestCaseValidationStep |
TestManagerUtil.getValidationStepById(int validationStepId)
Returns the TestCaseValidationStep object with Details such as StepName, StepType, Description,
ExpectedResult, ActualResult, StepComments and AuditHistory etc...of the specified validationStepId.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TestCaseValidationStep> |
TestManagerUtil.getValidationSteps(int testCaseId)
Returns the List of TestCaseValidationStep objects with Details such as StepName, StepType, Description,
ExpectedResult, ActualResult, StepComments and AuditHistory etc...of the specified testCaseId.
|
java.util.List<TestCaseValidationStep> |
TestManagerUtil.getValidationSteps(int nodeId,
Node.NodeType nodeType,
java.lang.String testCaseName)
Returns the List of TestCaseValidationStep objects with Details such as StepName, StepType, Description,
ExpectedResult, ActualResult, StepComments and AuditHistory etc...of the specified testCaseName, nodeId of nodeType.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
TestManagerUtil.addValidationStep(int nodeId,
Node.NodeType nodeType,
java.lang.String testCaseName,
TestCaseValidationStep validationStep)
ValidationStep will be added for the specified testCaseName of nodeId, nodeType with details given in TestCaseValidationStep Object.
|
RequestStatus |
TestManagerUtil.addValidationStep(int testCaseId,
TestCaseValidationStep validationStep)
ValidationStep will be added for the specified testCaseId with details
given in TestCaseValidationStep Object.
|
RequestStatus |
TestManagerUtil.updateValidationStep(TestCaseValidationStep validationStep)
ValidationStep will be updated as specified TestCaseValidationStep Object.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
TestManagerUtil.addValidationSteps(int testCaseId,
java.util.List<TestCaseValidationStep> validationSteps)
ValidationSteps will be added for the specified testCaseId with details given in the List of TestCaseValidationStep Objects.
|
RequestStatus |
TestManagerUtil.addValidationSteps(int nodeId,
Node.NodeType nodeType,
java.lang.String testCaseName,
java.util.List<TestCaseValidationStep> validationSteps)
ValidationSteps will be added for the specified testCaseName of nodeId,
nodeType with details given in the List of TestCaseValidationStep Objects.
|
RequestStatus |
TestManagerUtil.updateValidationSteps(int testCaseId,
java.util.List<TestCaseValidationStep> validationSteps)
ValidationSteps will be updated of the specified testCaseId,
with the details specified in TestCaseValidationStep Objects.
|
RequestStatus |
TestManagerUtil.updateValidationSteps(java.util.List<TestCaseValidationStep> validationSteps)
ValidationSteps will be updated as the specified TestCaseValidationStep Objects.
|