-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
phpunit.xml
40 lines (40 loc) · 1.36 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
executionOrder="random"
processIsolation="false"
resolveDependencies="true"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
<testsuite name="feature">
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory prefix="CodeGenerator">src/CodeGenerator</directory>
<directory suffix=".php">src/CodeGenerator/Infrastructure</directory>
<directory suffix=".php">src/Framework/Event/ClassResolver</directory>
<directory suffix=".php">src/Framework/Event/ConfigReader</directory>
</exclude>
</source>
</phpunit>