Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 1 | *** 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 | |
| 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 | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 11 | |
| 12 | Suite Setup Suite Setup |
| 13 | Suite Teardown Suite Teardown |
| 14 | Test Setup Test Setup |
| 15 | |
| 16 | *** Variables *** |
| 17 | # Initialize program parameters variables. |
| 18 | # Create parm_list containing all of our program parameters. |
| 19 | @{parm_list} TEST_MODE QUIET DEBUG |
| 20 | |
| 21 | # Initialize each program parameter. |
| 22 | ${TEST_MODE} 0 |
| 23 | ${QUIET} 0 |
| 24 | ${DEBUG} 0 |
| 25 | |
| 26 | |
| 27 | *** Test Cases *** |
Michael Walsh | 6a9b854 | 2017-05-23 17:57:20 -0500 | [diff] [blame] | 28 | Test Case 1 |
| 29 | |
| 30 | Print Timen First test case. |