Upgrade PHPUnit to 5.6.7.
[hoplite.git] / testing / phpunit.xml
1 <!--
2 Hoplite
3 Copyright (c) 2011 Blue Static
4
5 This program is free software: you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the Free
7 Software Foundation, either version 3 of the License, or any later version.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program. If not, see <http://www.gnu.org/licenses/>.
16 -->
17
18 <!-- Tested with PHPUnit 5.6.7 -->
19 <phpunit backupGlobals="FALSE"
20 backupStaticAttributes="FALSE"
21 colors="TRUE"
22 bootstrap="bootstrap.php"
23 printerFile="test_listener.php"
24 printerClass="hoplite\test\TestListener"
25 verbose="TRUE">
26
27 <testsuites>
28 <testsuite name="Hoplite Unit Tests">
29 <directory suffix="_test.php">./tests/</directory>
30 </testsuite>
31 </testsuites>
32
33 <filter>
34 <whitelist>
35 <directory suffix=".php">../</directory>
36 </whitelist>
37 <blacklist>
38 <directory>./</directory> <!-- Don't get coverage for test files. -->
39 </blacklist>
40 </filter>
41
42 <!--
43 <logging>
44 <log type="coverage-html" target="./unittest_coverage" yui="TRUE" highlight="TRUE"/>
45 </logging>
46 -->
47 </phpunit>