forked from zackkitzmiller/tiny-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
43 lines (42 loc) · 1.53 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
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Tiny Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/coverage.xml"/>
</logging>
<filter>
<whitelist>
<file>src/ZackKitzmiller/Tiny.php</file>
</whitelist>
</filter>
<listeners>
<listener class="League\PHPUnitCoverageListener\Listener">
<arguments>
<array>
<element key="printer">
<object class="League\PHPUnitCoverageListener\Printer\StdOut"/>
</element>
<element key="hook">
<object class="League\PHPUnitCoverageListener\Hook\Travis"/>
</element>
<element key="namespace">
<string>ZackKitzmiller</string>
</element>
<element key="repo_token">
<string>4GggSuZVGvVaxBi8E9IZTqG31EXFvjMe7</string>
</element>
<element key="target_url">
<string>https://coveralls.io/api/v1/jobs</string>
</element>
<element key="coverage_dir">
<string>build/</string>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>