Project

General

Profile

Test sequences XML representation » History » Version 2

Igor Melnichenko, 05/05/2014 08:45 PM

1 1 Igor Melnichenko
h1. Test sequences XML representation
2
3
<?xml version=''1.0'' encoding=''UTF-8''?>
4
5
<Sequence> <!-- a sequence consists of an event list and any number of vectors -->
6 2 Igor Melnichenko
	<EventList> <!-- a list of events associated with all the sequence -->
7
		<Event name="a name of a signal associated to the event" type="an event type (possible values: NEGATIVE_EDGE, POSITIVE_EDGE, ANY_EDGE)"></Event>
8
	</EventList>
9
	<Vector> <!-- a vector consists of an event list and any number of transactions -->
10
		<EventList> <!-- a list of events associated with this vector -->
11
			<Event name="a name of a signal associated to the event" type="an event type (possible values: NEGATIVE_EDGE, POSITIVE_EDGE, ANY_EDGE)"></Event>
12
		</EventList>
13
		<Transaction> <!-- a transaction consists of any number of signal-value pairs -->
14
			<Signal name="a name of the signal" value="either concrete value or constraint"></Signal>
15
		</Transaction>
16
	</Vector>
17 1 Igor Melnichenko
</Sequence>