-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml
52 lines (52 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="render">
<file>tests/render.php</file>
</testsuite>
<testsuite name="compile">
<file>tests/compile.php</file>
</testsuite>
<testsuite name="mainMethods">
<file>tests/mainMethods.php</file>
</testsuite>
<testsuite name="stream">
<file>tests/stream.php</file>
</testsuite>
<testsuite name="options">
<file>tests/options.php</file>
</testsuite>
<testsuite name="helpers">
<file>tests/helpers.php</file>
</testsuite>
<testsuite name="array">
<file>tests/array.php</file>
</testsuite>
<testsuite name="badSyntaxes">
<file>tests/badSyntaxes.php</file>
<file>tests/badSwitchSyntaxes.php</file>
<file>tests/badKeywordSyntaxes.php</file>
<file>tests/unexpectedTokens.php</file>
<file>tests/unexpectedTokensInBrackets.php</file>
<file>tests/unexpectedTokensInHooks.php</file>
<file>tests/unexpectedTokensInParentheses.php</file>
<file>tests/constantRestrictions.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./coverage/result.xml" />
<log type="coverage-html" target="./coverage/result" />
<log type="coverage-text" target="./coverage/result.txt" />
</logging>
</phpunit>