Язык описания шаблонов тестовых программ » History » Version 1
Alexander Kamkin, 09/25/2011 12:36 PM
1 | 1 | Alexander Kamkin | h1. Язык описания шаблонов тестовых программ |
---|---|---|---|
2 | |||
3 | Это незаконченная статья, которая время от времени дорабатывается. |
||
4 | |||
5 | <pre> |
||
6 | Template ::= Statement* |
||
7 | </pre> |
||
8 | |||
9 | <pre> |
||
10 | Statement ::= InstructionStatement | ControlStatement |
||
11 | </pre> |
||
12 | |||
13 | <pre> |
||
14 | InstructionStatement ::= (ConcreteInstruction | InstructionClass) (@ Situation)? |
||
15 | </pre> |
||
16 | |||
17 | <pre> |
||
18 | ConcreteInstruction ::= Identifier (Parameter (, Parameter)+)? |
||
19 | </pre> |
||
20 | |||
21 | <pre> |
||
22 | InstructionClass ::= Identifier (Parameter (, Parameter)+)? |
||
23 | </pre> |