blob: 02313577675e72d6aca570d4a4568863e8a7e236 [file] [log] [blame]
Michael Walsh6a9b8542017-05-23 17:57:20 -05001*** Settings ***
2
Michael Walsh410b1782019-10-22 15:56:18 -05003# Copy this template as a base to get a start on a robot program. You may remove any generic comments (like
4# this one).
Michael Walsh6a9b8542017-05-23 17:57:20 -05005
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 Walsh3bb1e822019-08-20 16:34:20 -050011Library gen_robot_valid.py
Michael Walshfdc3a422019-07-31 17:56:46 -050012Resource bmc_redfish_resource.robot
Michael Walsh6a9b8542017-05-23 17:57:20 -050013
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 ***
Michael Walsh6a9b8542017-05-23 17:57:20 -050030Test Case 1
George Keishing333bb722019-12-11 11:40:49 -060031 [Documentation] Test case 1 documentation.
Michael Walshfdc3a422019-07-31 17:56:46 -050032
Michael Walshc8731ac12019-08-28 16:22:08 -050033 Qprint Timen First test case.