Project

General

Profile

Test sequences XML representation » History » Version 1

Igor Melnichenko, 05/05/2014 01:57 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
  <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"></Event>
15
    </Transaction>
16
  </Vector>
17
</Sequence>