Interface TestElementTraverser
public interface TestElementTraverser
For traversing Test Elements, which contain property that can be other test
elements, strings, collections, maps, objects
- Version:
- $Revision: 1649318 $
-
Method Summary
Modifier and TypeMethodDescriptionvoidNotification that a property is ending.voidNotification that the test element is now done.voidNotification that a property is starting.voidNotification that a new test element is about to be traversed.
-
Method Details
-
startTestElement
Notification that a new test element is about to be traversed.- Parameters:
el- element to be traversed
-
endTestElement
Notification that the test element is now done.- Parameters:
el- element that was traversed
-
startProperty
Notification that a property is starting. This could be a test element property or a Map property - depends on the context.- Parameters:
key- property to be traversed
-
endProperty
Notification that a property is ending. Again, this could be a test element or a Map property, depending on the context.- Parameters:
key- property that was traversed
-