source: trunk/tests/phpunit.xml @ 468

Last change on this file since 468 was 468, checked in by anonymous, 10 years ago

Completed integrating /branches/eli_branch into /trunk. Changes include:

  • Removed closing ?> from end of files
  • Upgrade old-style contructor methods to use construct() instead.
  • Class properties and methods defined as public, private, static or protected
  • Ensure code runs under E_ALL with only mysql_* deprecated warnings
  • Search for the '@' symbol anywhere it might be used to supress runtime errors, then replace with proper error recovery.
  • Run the php cli -l option to check files for syntax errors.
  • Bring tests up-to-date with latest version and methods of PHPUnit
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="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        </testsuite>
37    </testsuites>
38</phpunit>
Note: See TracBrowser for help on using the repository browser.