-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
42 lines (39 loc) · 1.73 KB
/
phpunit.xml.dist
File metadata and controls
42 lines (39 loc) · 1.73 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="Nice Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<file>./src/DependencyInjection/ExtendableInterface.php</file>
<file>./src/DependencyInjection/CompilerAwareExtensionInterface.php</file>
<file>./src/DependencyInjection/ConfigurationProviderInterface.php</file>
<file>./src/Router/DispatcherFactoryInterface.php</file>
<file>./src/Router/RouteCollectorInterface.php</file>
<file>./src/Router/RouteMapperInterface.php</file>
<file>./src/DependencyInjection/ContainerInitializerInterface.php</file>
<file>./src/Security/AuthenticatorInterface.php</file>
<file>./src/Router/NamedDataGeneratorInterface.php</file>
<file>./src/Router/UrlGeneratorInterface.php</file>
<file>./src/Router/UrlGenerator/DataGeneratorInterface.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/logs/report" showUncoveredFiles="true" highlight="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>