source: trunk/tests/phpunit.xml

Last change on this file was 602, checked in by anonymous, 7 years ago

Confirm tests run correctly (for mysql >= 5.7 need to set sql-mode=)

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
4backupGlobals="false"
5beStrictAboutCoversAnnotation="true"
6beStrictAboutOutputDuringTests="true"
7beStrictAboutTestsThatDoNotTestAnything="true"
8beStrictAboutTodoAnnotatedTests="true"
9convertErrorsToExceptions="false"
10convertNoticesToExceptions="false"
11convertWarningsToExceptions="false"
12bootstrap="bootstrap.php"
13strict="true"
14colors="true"
15verbose="true"
16debug="false"
17tap="true"
18stopOnError="true"
19stopOnFailure="true"
20stopOnIncomplete="true"
21stopOnSkipped="true"
22>
23    <includePath>.</includePath>
24    <includePath>/opt</includePath>
25    <testsuite>
26        <file>AppTest.php</file>
27        <file>AuthFileTest.php</file>
28        <!-- <file>AuthorizeNetTest.php</file> -->
29        <file>AuthSQLTest.php</file>
30        <file>CSSTest.php</file>
31        <file>DBSessionHandlerTest.php</file>
32        <file>EmailTest.php</file>
33        <file>FormValidatorTest.php</file>
34        <file>LockTest.php</file>
35        <file>PayPalTest.php</file>
36        <file>VersionTest.php</file>
37        <file>UtilitiesTest.php</file>
38    </testsuite>
39
40    <filter>
41        <whitelist processUncoveredFilesFromWhitelist="true">
42            <directory suffix=".php">src</directory>
43        </whitelist>
44    </filter>
45</phpunit>
Note: See TracBrowser for help on using the repository browser.