1*** Settings ***
2
3# Copy this template as a base to get a start on a robot program. You may remove any generic comments (like
4# 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
11Library                     gen_robot_valid.py
12Resource                    bmc_redfish_resource.robot
13
14Suite Setup                 Suite Setup
15Suite Teardown              Suite Teardown
16Test Setup                  Test Setup
17
18*** Variables ***
19# Initialize program parameters variables.
20# Create parm_list containing all of our program parameters.
21@{parm_list}                TEST_MODE  QUIET  DEBUG
22
23# Initialize each program parameter.
24${TEST_MODE}                0
25${QUIET}                    0
26${DEBUG}                    0
27
28
29*** Test Cases ***
30Test Case 1
31    [Documentation]  Test case 1 documentation.
32
33    Qprint Timen  First test case.
34