| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 1 | *** Settings *** | 
|  | 2 |  | 
| Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 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). | 
| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 5 |  | 
|  | 6 | Documentation  Base to get a start on a robot program. | 
|  | 7 |  | 
|  | 8 | Library                     pgm_template.py | 
| Michael Walsh | 41dda1b | 2017-09-14 11:42:29 -0500 | [diff] [blame] | 9 | Library                     gen_print.py | 
|  | 10 | Library                     gen_robot_print.py | 
| Michael Walsh | 3bb1e82 | 2019-08-20 16:34:20 -0500 | [diff] [blame] | 11 | Library                     gen_robot_valid.py | 
| Michael Walsh | fdc3a42 | 2019-07-31 17:56:46 -0500 | [diff] [blame] | 12 | Resource                    bmc_redfish_resource.robot | 
| Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 13 |  | 
|  | 14 | Suite Setup                 Suite Setup | 
|  | 15 | Suite Teardown              Suite Teardown | 
|  | 16 | Test 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 Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 30 | Test Case 1 | 
| George Keishing | 333bb72 | 2019-12-11 11:40:49 -0600 | [diff] [blame] | 31 | [Documentation]  Test case 1 documentation. | 
| Michael Walsh | fdc3a42 | 2019-07-31 17:56:46 -0500 | [diff] [blame] | 32 |  | 
| Michael Walsh | c8731ac1 | 2019-08-28 16:22:08 -0500 | [diff] [blame] | 33 | Qprint Timen  First test case. |