-
Notifications
You must be signed in to change notification settings - Fork 61
/
phpunit.xml.dist
74 lines (69 loc) · 2.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
strict="true"
bootstrap="./Test/bootstrap.php">
<testsuites>
<testsuite name="JsonLD Test Suite">
<directory suffix="Test.php">./Test/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory>./Test</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<!-- Uncomment this section if you want to generate an EARL implementation report
<listeners>
<listener class="\ML\JsonLD\Test\EarlReportGenerator">
<arguments>
<array>
<element key="target">
<string>earl-report.jsonld</string>
</element>
<element key="project-name">
<string>JsonLD</string>
</element>
<element key="project-url">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="project-homepage">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="license-url">
<string>https://raw.github.com/lanthaler/JsonLD/master/LICENSE</string>
</element>
<element key="project-description">
<string>JSON-LD processor for PHP</string>
</element>
<element key="programming-language">
<string>PHP</string>
</element>
<element key="developer-name">
<string>Markus Lanthaler</string>
</element>
<element key="developer-url">
<string>http://me.markus-lanthaler.com</string>
</element>
<element key="developer-homepage">
<string>http://www.markus-lanthaler.com/</string>
</element>
</array>
</arguments>
</listener>
</listeners>
-->
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
</logging>
</phpunit>