forked from SMillerDev/phpdraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·69 lines (68 loc) · 2.93 KB
/
phpunit.xml
File metadata and controls
executable file
·69 lines (68 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test.bootstrap.inc.php"
backupGlobals="false"
backupStaticAttributes="false"
syntaxCheck="false"
forceCoversAnnotation="true"
mapTestClassNameToCoveredClassName="true"
colors="true"
verbose="true">
<php>
<ini name="zend.enable_gc" value="1" />
</php>
<testsuites>
<testsuite name="Parse">
<file>../src/PHPDraft/Parse/Tests/DrafterTest.php</file>
<file>../src/PHPDraft/Parse/Tests/JsonToHTMLTest.php</file>
</testsuite>
<testsuite name="Model">
<file>../src/PHPDraft/Model/Tests/CategoryTest.php</file>
<file>../src/PHPDraft/Model/Tests/HierarchyElementTest.php</file>
<file>../src/PHPDraft/Model/Tests/HTTPRequestTest.php</file>
<file>../src/PHPDraft/Model/Tests/HTTPResponseTest.php</file>
<file>../src/PHPDraft/Model/Tests/ResourceTest.php</file>
<file>../src/PHPDraft/Model/Tests/TransitionTest.php</file>
<file>../src/PHPDraft/Model/Elements/Tests/ObjectStructureElementTest.php</file>
<file>../src/PHPDraft/Model/Elements/Tests/ArrayStructureElementTest.php</file>
<file>../src/PHPDraft/Model/Elements/Tests/RequestBodyElementTest.php</file>
</testsuite>
<testsuite name="In">
<file>../src/PHPDraft/In/Tests/ApibFileParserTest.php</file>
</testsuite>
<testsuite name="Out">
<file>../src/PHPDraft/Out/Tests/UITest.php</file>
<file>../src/PHPDraft/Out/Tests/TemplateGeneratorTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>../src/PHPDraft/</directory>
<exclude>
<file>../src/PHPDraft/Out/Minifier.php</file>
<directory>../src/Mitchelf</directory>
<directory>../src/PHPDraft/Parse/Tests</directory>
<directory>../src/PHPDraft/Model/Tests</directory>
<directory>../src/PHPDraft/Model/Elements/Tests</directory>
<directory>../src/PHPDraft/Out/Tests</directory>
<directory>../src/PHPDraft/Out/HTML</directory>
<directory>../src/PHPDraft/In/Tests</directory>
<directory>../src/PHPDraft/Core</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="../build/coverage"
title="PHPDraft"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-clover"
target="../build/logs/clover.xml"/>
<log type="junit"
target="../build/logs/junit.xml"
logIncompleteSkipped="false"/>
</logging>
</phpunit>