~jlungo/zhris/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit    backupGlobals="false"
            backupStaticAttributes="true"
            bootstrap="BootStrap.php"
            cacheTokens="true"
            colors="false"
            convertErrorsToExceptions="true"
            convertNoticesToExceptions="true"
            convertWarningsToExceptions="true"
            forceCoversAnnotation="false"
            mapTestClassNameToCoveredClassName="false"
            printerClass="PHPUnit_TextUI_ResultPrinter"
            processIsolation="false"
            stopOnError="true"
            stopOnFailure="true"
            stopOnIncomplete="false"
            stopOnSkipped="false"
            testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
            strict="false"
            verbose="false">

    <testsuites>

        <testsuite name="Other">
          <directory suffix=".php">testcases/other/</directory>
        </testsuite>

        <testsuite name="Payroll Deduction">
          <directory suffix=".php">testcases/payroll_deduction/</directory>
        </testsuite>

        <testsuite name="Paystub">
          <directory suffix=".php">testcases/paystub/</directory>
        </testsuite>

        <testsuite name="Policy">
          <directory suffix=".php">testcases/policy/</directory>
        </testsuite>

        <testsuite name="Expense">
          <directory suffix=".php">testcases/expense/</directory>
        </testsuite>

        <testsuite name="User Review">
          <directory suffix=".php">testcases/kpi/</directory>
        </testsuite>

        <testsuite name="Job Application">
          <directory suffix=".php">testcases/recruitment/</directory>
        </testsuite>

        <testsuite name="i18n">
            <directory suffix=".php">testcases/i18n/</directory>
        </testsuite>
    </testsuites>
</phpunit>