source: trunk/tests/phpunit.xml @ 599

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

Update tests to function with phpunit 5.7 (not tested)

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"
14verbose="true"
15debug="true"
16tap="true"
17stopOnError="true"
18stopOnFailure="true"
19stopOnIncomplete="true"
20stopOnSkipped="true"
21>
22    <includePath>.</includePath>
23    <includePath>/opt</includePath>
24    <testsuite>
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
39    <filter>
40        <whitelist processUncoveredFilesFromWhitelist="true">
41            <directory suffix=".php">src</directory>
42        </whitelist>
43    </filter>
44</phpunit>
Note: See TracBrowser for help on using the repository browser.