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