Project

General

Profile

hello_world.xml

Eugenie Lyzenko, 08/24/2012 06:43 PM

Download (1 KB)

 
1
<?xml version="1.0"?>
2
<test-plan name="hello_world_testing" description="Classical simplest test." >
3
   <!-- The definitions of the commonly used parameters and directories -->
4
   <project-index filename="study_ndx.xml" />
5
   <!-- Subdirectory to put the test results -->
6
   <output-directory path="results" unique="true" />
7
   <!-- The host:port the tests will be started -->
8
   <target host="localhost" port="22" prompt="host,port" />
9
   <!-- Define the variable used in every test of this test plan -->
10
   <resources>
11
      <variable name="shellPromptText" type="String" initial="" />
12
   </resources>
13
   <!-- Test set to execute, the classical Hello World -->
14
   <test-set name="hello_world" description="The simplest test to start learning." threads="1" >
15
      <!-- To be machine independent we need to know the prompt line first -->
16
      <test filename="common/get_sys_parms.xml" dependency="pre_condition" />
17
      <!-- The test scenario itself -->
18
      <test filename="hello/hello.xml" />
19
   </test-set>
20
</test-plan>