This repository was archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
54 lines (48 loc) · 1.81 KB
/
phpunit.xml
File metadata and controls
54 lines (48 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of {@link https://github.com/MovLib MovLib}.
Copyright © 2013-present {@link https://movlib.org/ MovLib}.
MovLib is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
MovLib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with MovLib.
If not, see {@link http://www.gnu.org/licenses/ gnu.org/licenses}.
-->
<!--
The PHPUnit XML configuration.
AUTHOR: Richard Fussenegger <richard@fussenegger.info>
COPYRIGHT: © 2013 MovLib
LICENSE: http://www.gnu.org/licenses/agpl.html AGPL-3.0
LINK: https://movlib.org/
SINCE: 0.0.1-dev
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
stopOnSkipped="true"
stopOnIncomplete="true"
syntaxCheck="true"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<const name="MOVLIB_PHPUNIT" value="true" />
</php>
<testsuites>
<testsuite name="MovLib Test Suite">
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>