-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
60 lines (58 loc) · 2.14 KB
/
Copy pathphpunit.xml
File metadata and controls
60 lines (58 loc) · 2.14 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
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 backupGlobals="false"-->
<!--backupStaticAttributes="false"-->
<!--bootstrap="tests/bootstrap.php"-->
<!--colors="true"-->
<!--convertErrorsToExceptions="true"-->
<!--convertNoticesToExceptions="true"-->
<!--convertWarningsToExceptions="true"-->
<!--processIsolation="false"-->
<!--stopOnFailure="false"-->
<!--syntaxCheck="false"-->
<!-->-->
<!--<testsuites>-->
<!--<testsuite name="Bluzman Test Suite">-->
<!--<directory>./tests/</directory>-->
<!--</testsuite>-->
<!--</testsuites>-->
<!--<filter>-->
<!--<whitelist addUncoveredFilesFromWhitelist="false">-->
<!--<directory suffix=".php">src</directory>-->
<!--<exclude>-->
<!--<directory suffix=".php">vendor</directory>-->
<!--</exclude>-->
<!--</whitelist>-->
<!--</filter>-->
<!--<logging>-->
<!--<!– Uncomment this line if you want to have coverage report generated every test run –>-->
<!--<log type="coverage-html" target="build/reports/coverage" charset="UTF-8"-->
<!--yui="true" highlight="true"-->
<!--lowUpperBound="35" highLowerBound="70"/>-->
<!--</logging>-->
<!--</phpunit>-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
stopOnFailure="false"
colors="true"
verbose="true"
bootstrap="./tests/bootstrap.php">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Bluz\Tests\TestListener"/>
</listeners>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
<exclude>
<directory suffix=".php">./vendor/</directory>
</exclude>
</whitelist>
<blacklist>
<directory suffix=".php">./vendor</directory>
</blacklist>
</filter>
</phpunit>