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