source: branches/eli_branch/tests/phpunit.xml @ 446

Last change on this file since 446 was 446, checked in by anonymous, 11 years ago

Wrapper script for phpunit. Changed logMsg SCREEN action to print to stderr.

File size: 1.0 KB
Line 
1<!--
2For config options see:
3http://phpunit.de/manual/current/en/appendixes.configuration.html
4
5Run all scripts by executing ./run_tests.sh
6-->
7<phpunit
8convertErrorsToExceptions="false"
9convertNoticesToExceptions="false"
10convertWarningsToExceptions="false"
11bootstrap="bootstrap.php"
12strict="true"
13verbose="true"
14debug="true"
15tap="true"
16stopOnError="true"
17stopOnFailure="true"
18stopOnIncomplete="false"
19stopOnSkipped="true"
20>
21    <includePath>.</includePath>
22    <includePath>/opt</includePath>
23    <testsuites>
24        <testsuite name="Codebase_Tests">
25            <file>AppTest.php</file>
26            <file>AuthFileTest.php</file>
27            <file>AuthorizeNetTest.php</file>
28            <file>AuthSQLTest.php</file>
29            <file>CSSTest.php</file>
30            <file>DBSessionHandlerTest.php</file>
31            <file>EmailTest.php</file>
32            <file>FormValidatorTest.php</file>
33            <file>LockTest.php</file>
34            <file>PayPalTest.php</file>
35            <file>VersionTest.php</file>
36        </testsuite>
37    </testsuites>
38</phpunit>
Note: See TracBrowser for help on using the repository browser.