-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
60 lines (54 loc) · 1.99 KB
/
phpunit.xml.dist
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="false"
beStrictAboutTodoAnnotatedTests="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
colors="true"
cacheResult="true"
processIsolation="false"
>
<php>
<ini name="memory_limit" value="4096M" />
</php>
<testsuites>
<testsuite name="Human">
<file>test/app/tests/Models/DateTimeFieldsTest.php</file>
</testsuite>
<testsuite name="Models">
<directory>test/app/tests/Models</directory>
</testsuite>
<testsuite name="Services">
<directory>test/app/tests/Services</directory>
</testsuite>
</testsuites>
<!--<logging>
<log type="coverage-html" target=".coverage/phpunit-report"/>
<log type="coverage-clover" target=".coverage/phpunit-clover.xml"/>
<log type="junit" target=".coverage/phpunit-junit.xml"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>-->
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
<directory>./views</directory>
<directory>./assets</directory>
<directory>./bin</directory>
<directory>./tests</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" />
</listeners>
</phpunit>