|
Rational QualityArchitect/Java API Version 1.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A class implementing this interface provides the capability of displaying the data stored in the Verification Point Data class, allowing the tester to interactively accept or reject that data as the expected (baseline) data for a static verification point.
To enable this capability, the test script sets the OPTION_USER_ACKNOWLEDGE_BASELINE
option in the setOptions()
method of the specialized Verification Point class.
The VerificationPointDataRenderer
interface is part of the
verification point framework that you use to
implement your own verification point classes. The verification point framework also includes:
VerificationPoint
class
VerificationPointData
interface
VerificationPointDataProvider
interface
VerificationPointComparator
interface
Method Summary | |
boolean |
displayAndValidateData(VerificationPointData vpdData,
java.lang.String vpName)
This method presents the tester with a visual representation of the data object as it exists before the expected (baseline) data is stored for this static verification point. |
Method Detail |
public boolean displayAndValidateData(VerificationPointData vpdData, java.lang.String vpName)
This method presents the tester with a visual representation of the data object as it exists before the expected (baseline) data is stored for this static verification point.
This method is invoked by the verification point framework when the following conditions exist:
OPTION_USER_ACKNOWLEDGE_BASELINE
option
in the setOptions()
method of the Verification Point class.
performTest()
method of the Verification
Point class for a static verification point.
When the method is invoked, it presents the tester with a visual representation of the data, and allows the tester to accept or reject the data:
vpdData
- The data to present to the tester for confirmation.true
if the tester accepts the displayed data, or
false
if the tester rejects the data.
|
30-Jun-2003 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |