1*** 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
9Library                     gen_print.py
10Library                     gen_robot_print.py
11
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 ***
28Test Case 1
29
30    Print Timen  First test case.
31