blob: db6a8916489bb9ad04f147f5f617cb65f69042fb [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 Walshfdc3a422019-07-31 17:56:46 -050011Resource bmc_redfish_resource.robot
Michael Walsh6a9b8542017-05-23 17:57:20 -050012
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 ***
Michael Walsh6a9b8542017-05-23 17:57:20 -050029Test Case 1
Michael Walshfdc3a422019-07-31 17:56:46 -050030
Michael Walsh6a9b8542017-05-23 17:57:20 -050031 Print Timen First test case.