blob: ec963da081758f6265ccf703a343e169ec853107 [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
9
10Suite Setup Suite Setup
11Suite Teardown Suite Teardown
12Test Setup Test Setup
13
14*** Variables ***
15# Initialize program parameters variables.
16# Create parm_list containing all of our program parameters.
17@{parm_list} TEST_MODE QUIET DEBUG
18
19# Initialize each program parameter.
20${TEST_MODE} 0
21${QUIET} 0
22${DEBUG} 0
23
24
25*** Test Cases ***
26###############################################################################
27Test Case 1
28
29 Print Timen First test case.
30
31###############################################################################