blob: 946e3c99ae63960bed7bc72b2bff5fe78a7c046c [file] [log] [blame]
Michael Walsh6a9b8542017-05-23 17:57:20 -05001*** Settings ***
2
3# Copy this template as a base to get a start on a robot program. You may
4# remove any generic comments (like this one).
5
6Documentation Base to get a start on a robot program.
7
8Library pgm_template.py
Michael Walsh41dda1b2017-09-14 11:42:29 -05009Library gen_print.py
10Library gen_robot_print.py
Michael Walsh6a9b8542017-05-23 17:57:20 -050011
12Suite Setup Suite Setup
13Suite Teardown Suite Teardown
14Test Setup Test Setup
15
16*** Variables ***
17# Initialize program parameters variables.
18# Create parm_list containing all of our program parameters.
19@{parm_list} TEST_MODE QUIET DEBUG
20
21# Initialize each program parameter.
22${TEST_MODE} 0
23${QUIET} 0
24${DEBUG} 0
25
26
27*** Test Cases ***
Michael Walsh6a9b8542017-05-23 17:57:20 -050028Test Case 1
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -050029 [Documentation] <test case doc here>
Michael Walsh6a9b8542017-05-23 17:57:20 -050030 Print Timen First test case.