Introduction
to Test Plans |
|
You
can implement your test plans using a script. A script is a text
file specifying the steps to guide the operator through a test
plan. It can be edited using any text editor, for example,
NotePad. |
|
Script
Body |
|
A
script has the following layout:
- Specifying the
sequence of the plans
- Specifying
what to do in a plan
A script looks
typically as follows: |
|
AddPlan("wash_plan") |
AddPlan("blank_plan") |
AddPlan("run_plan") |
. |
. |
. |
|
function
wash_plan() |
. |
. |
. |
end
function |
|
function
blank_plan() |
. |
. |
. |
end
function |
|
function
run_plan() |
. |
. |
. |
end
function |
|