| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 1 | *** Settings *** | 
|  | 2 |  | 
| George Keishing | c2c554b | 2025-03-20 12:40:44 +0530 | [diff] [blame] | 3 | # 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 Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 8 |  | 
|  | 9 | Documentation  Base to get a start on a robot program. | 
|  | 10 |  | 
|  | 11 | Library                     pgm_template.py | 
| Michael Walsh | 41dda1b | 2017-09-14 11:42:29 -0500 | [diff] [blame] | 12 | Library                     gen_print.py | 
|  | 13 | Library                     gen_robot_print.py | 
| Michael Walsh | 3bb1e82 | 2019-08-20 16:34:20 -0500 | [diff] [blame] | 14 | Library                     gen_robot_valid.py | 
| Michael Walsh | fdc3a42 | 2019-07-31 17:56:46 -0500 | [diff] [blame] | 15 | Resource                    bmc_redfish_resource.robot | 
| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 16 |  | 
| George Keishing | c2c554b | 2025-03-20 12:40:44 +0530 | [diff] [blame] | 17 | # Write your own keyword(s) for setup and teardown | 
| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 18 | Suite Setup                 Suite Setup | 
|  | 19 | Suite Teardown              Suite Teardown | 
|  | 20 | Test 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 Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 34 | Test Case 1 | 
| George Keishing | 333bb72 | 2019-12-11 11:40:49 -0600 | [diff] [blame] | 35 | [Documentation]  Test case 1 documentation. | 
| George Keishing | c2c554b | 2025-03-20 12:40:44 +0530 | [diff] [blame] | 36 | [Tags]  Test_Case_1 | 
| Michael Walsh | fdc3a42 | 2019-07-31 17:56:46 -0500 | [diff] [blame] | 37 |  | 
| George Keishing | c2c554b | 2025-03-20 12:40:44 +0530 | [diff] [blame] | 38 | Log To Console  First test case. |