source: trunk/tests/phpunit.xml @ 545

Last change on this file since 545 was 541, checked in by anonymous, 9 years ago

v2.2.0-3: Fixed auth password hashing verification issues. Updated hyperlinkTxt() with option. Updated tests.

File size: 1.1 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="true"
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            <file>UtilitiesTest.php</file>
37        </testsuite>
38    </testsuites>
39</phpunit>
Note: See TracBrowser for help on using the repository browser.