Prokee Parameter Definitions

From prokee
Revision as of 23:18, 7 June 2019 by Andy (talk | contribs) (Created page with "== Standard Parameters == The following block can be used to define standard parameters with predefined parameter types. <name of the block>:<type> { name="...";...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Standard Parameters

The following block can be used to define standard parameters with predefined parameter types.

<name of the block>:<type>
{
    name="...";
    desc="...";
    direction="...";
}
  • The <name of the block> should be a unique name in global scope.
  • The <type> should be one of the predefined Prokee Parameter Types.
  • The value for name sets the name of the parameter.
  • A description can be given with desc.
  • And direction may be set to the direction (if the parameter is used for input or output or both) of the parameter: Either "IN" or "OUT" or "IN/OUT" or the empty string.

Parameter Specification for Tests

test
{
    <name of the test>
    {
        count="...";
        input="...";
        output="...";
        cleanup="...";
    }
}

Domain (Value Range) of Parameters

  • ANY_BOOL
  • ANY_CHAR
  • ...