-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 821 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<!-- see http://www.phpunit.de/wiki/Documentation -->
<!-- Options copy-pasted from phpUnderControl documentation -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./tests/Bootstrap.php"
colors="false"
stopOnFailure="false"
processIsolation="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<testsuite name="FrameworkTests">
<directory>./tests</directory>
</testsuite>
<logging>
<junit outputFile="./build/logs/phpunit.xml"/>
</logging>
<!-- Define directories/files filter for code coverage. -->
<source>
<include>
<directory suffix=".php">./library/Opus</directory>
</include>
<exclude/>
</source>
</phpunit>