forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (27 loc) · 1.19 KB
/
phpunit.xml.dist
File metadata and controls
28 lines (27 loc) · 1.19 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="tests/common/bootstrap.php" colors="true">
<testsuites>
<testsuite name="unit"><directory>./tests/unit/</directory></testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<!-- Temporary excludes because these files and folders will be refactored away -->
<directory>src/DomainModel/Renderer/Router</directory>
<directory>src/Application/Renderer/Router</directory>
<directory>src/Application/Renderer/*Renderer*</directory>
<file>src/Application/Renderer/JsonpRenderer.php</file>
<file>src/Application/Renderer/StructureXmlRenderer.php</file>
<file>src/Application/Renderer/TwigRenderer.php</file>
<file>src/Application/Renderer/XslRenderer.php</file>
</exclude>
</whitelist>
</filter>
<listeners>
<listener
class="Mockery\Adapter\Phpunit\TestListener"
file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"
/>
</listeners>
</phpunit>