-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
41 lines (36 loc) · 1.58 KB
/
phpunit.xml
File metadata and controls
41 lines (36 loc) · 1.58 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="./vendor/autoload.php"
>
<testsuites>
<testsuite name="all">
<directory>UserBundle/Tests</directory>
</testsuite>
<testsuite name="unitTest">
<directory>UserBundle/Tests/Model/RoleTest.php</directory>
<directory>UserBundle/Tests/Model/Builder/RoleBuilderTest.php</directory>
<directory>UserBundle/Tests/Model/Factory/RoleFactoryTest.php</directory>
<directory>UserBundle/Tests/Exception/UnvalidatedRoleDtoTest.php</directory>
<directory>UserBundle/Tests/DependencyInjection/BeotieUserExtensionTest.php</directory>
<directory>UserBundle/Tests/DependencyInjection/ConfigurationTest.php</directory>
</testsuite>
<testsuite name="fonctional">
<directory>UserBundle/Tests/Model/Factory/FonctionalRoleFactoryTest.php</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>UserBundle</directory>
<exclude>
<directory>UserBundle/Tests</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="doc/coverage" lowUpperBound="80" highLowerBound="95"/>
</logging>·
</phpunit>