public class EmptyTestVisitor extends java.lang.Object implements TestVisitor
Test
objects.
The visitor does nothing.
Constructor and Description |
---|
EmptyTestVisitor() |
Modifier and Type | Method and Description |
---|---|
void |
onEvent(Event event)
Indicates that a walker has encountered the specified event.
|
void |
onEventListBegin(EventList eventList)
Indicates that a walker has started walking across the specified event list.
|
void |
onEventListEnd(EventList eventList)
Indicates that walker has finished walking across the specified event list.
|
void |
onSequenceBegin(Sequence sequence)
Indicates that a walker has started walking across the specified sequence.
|
void |
onSequenceEnd(Sequence sequence)
Indicates that a walker has finished walking across the specified sequence.
|
void |
onTestBegin(Test test)
Indicates that a walker has started walking across the specified test.
|
void |
onTestEnd(Test test)
Indicates that a walker has finished walking across the specified test.
|
void |
onTransactionBegin(Transaction transaction)
Indicates that a walker has started walking across the specified transaction.
|
void |
onTransactionEnd(Transaction transaction)
Indicates that a walker has finished walking across the specified transaction.
|
void |
onVariable(java.lang.String name,
ru.ispras.fortress.expression.Node value)
Indicates that a walker has encountered the specified variable.
|
void |
onVectorBegin(TestVector vector)
Indicates that a walker has started walking across the specified vector.
|
void |
onVectorEnd(TestVector vector)
Indicates that a walker has finished walking across the specified vector.
|
public void onTestBegin(Test test)
TestVisitor
onTestBegin
in interface TestVisitor
test
- the visited testpublic void onTestEnd(Test test)
TestVisitor
onTestEnd
in interface TestVisitor
test
- the visited testpublic void onSequenceBegin(Sequence sequence)
TestVisitor
onSequenceBegin
in interface TestVisitor
sequence
- the visited sequencepublic void onSequenceEnd(Sequence sequence)
TestVisitor
onSequenceEnd
in interface TestVisitor
sequence
- the visited sequencepublic void onVectorBegin(TestVector vector)
TestVisitor
onVectorBegin
in interface TestVisitor
vector
- the visited vectorpublic void onVectorEnd(TestVector vector)
TestVisitor
onVectorEnd
in interface TestVisitor
vector
- the visited vectorpublic void onTransactionBegin(Transaction transaction)
TestVisitor
onTransactionBegin
in interface TestVisitor
transaction
- the visited transactionpublic void onTransactionEnd(Transaction transaction)
TestVisitor
onTransactionEnd
in interface TestVisitor
transaction
- the visited transactionpublic void onEventListBegin(EventList eventList)
TestVisitor
onEventListBegin
in interface TestVisitor
eventList
- the visited eventListpublic void onEventListEnd(EventList eventList)
TestVisitor
onEventListEnd
in interface TestVisitor
eventList
- the visited eventListpublic void onEvent(Event event)
TestVisitor
onEvent
in interface TestVisitor
event
- the encountered eventpublic void onVariable(java.lang.String name, ru.ispras.fortress.expression.Node value)
TestVisitor
onVariable
in interface TestVisitor
name
- a name of the encountered signalvalue
- a value of the encountered signal