Native Test Config Commands

A number of native commands are built in to the system allowing you to perform actions with in your test case such at a delay.

Supported Commands

Delay

The delay command allows you to freeze the test execution for a set time, this can be useful to allow equipment to settle after configuring the equipment. The command can be used in the setup and destroy entries.The command is added to the list of setup or destroy commands in format ** - delay: time in milliseconds** Usage of the command can be seen below.

1setup:
2  - dut:$ setup_load_pin
3  - dut:$ enable_load_pin
4  - delay: 500
5test:
6  - dut:$ read_output_voltage
7destroy:
8  - delay: 100
9  - dut:$ disable_load_pin

The above configurations adds 2 delays of 500 and 100 milliseconds respectively.