Suite XML

A Suite is a core concept in the BaselineTest approach. A Suite defines an ordered set of TestCases to run as well as optional arguments files. Context and Suite arguments are inherited by the TestCase. An example suite.xml is shown below:

<suite comparator="text" contexts="simple" skip="false">
        <arguments>
                <arg name="test">this is a test argument as a String</arg>
        </arguments>
    <testcase class="net.sf.sample.SmokeTest"/>
</suite>