blob: 2acb339e291d72c0f04624542982b207d45d4a2d [file] [log] [blame]
Michael Walsh6a9b8542017-05-23 17:57:20 -05001*** Settings ***
2
George Keishingc2c554b2025-03-20 12:40:44 +05303# Copy this template as a base to get a start on a robot program.
4# You may remove any generic comments (like this one).
5
6# Note: This is a template base code structure and not meant to
7# work as it is directly without modification.
Michael Walsh6a9b8542017-05-23 17:57:20 -05008
9Documentation Base to get a start on a robot program.
10
11Library pgm_template.py
Michael Walsh41dda1b2017-09-14 11:42:29 -050012Library gen_print.py
13Library gen_robot_print.py
Michael Walsh3bb1e822019-08-20 16:34:20 -050014Library gen_robot_valid.py
Michael Walshfdc3a422019-07-31 17:56:46 -050015Resource bmc_redfish_resource.robot
Michael Walsh6a9b8542017-05-23 17:57:20 -050016
George Keishingc2c554b2025-03-20 12:40:44 +053017# Write your own keyword(s) for setup and teardown
Michael Walsh6a9b8542017-05-23 17:57:20 -050018Suite Setup Suite Setup
19Suite Teardown Suite Teardown
20Test Setup Test Setup
21
22*** Variables ***
23# Initialize program parameters variables.
24# Create parm_list containing all of our program parameters.
25@{parm_list} TEST_MODE QUIET DEBUG
26
27# Initialize each program parameter.
28${TEST_MODE} 0
29${QUIET} 0
30${DEBUG} 0
31
32
33*** Test Cases ***
Michael Walsh6a9b8542017-05-23 17:57:20 -050034Test Case 1
George Keishing333bb722019-12-11 11:40:49 -060035 [Documentation] Test case 1 documentation.
George Keishingc2c554b2025-03-20 12:40:44 +053036 [Tags] Test_Case_1
Michael Walshfdc3a422019-07-31 17:56:46 -050037
George Keishingc2c554b2025-03-20 12:40:44 +053038 Log To Console First test case.