-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathphpunit.xml
39 lines (39 loc) · 946 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.2/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="true" colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
printerClass="PHPUnit\TextUI\ResultPrinter"
>
<testsuites>
<testsuite name="WPackIO Enqueue Test Suit">
<directory suffix="Test.php">
./tests
</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">
./inc
</directory>
</whitelist>
</filter>
<logging>
<log
type="coverage-text"
target="php://stdout"
showUncoveredFiles="true"
/>
<log
type="coverage-clover"
target="coverage/phpunit/clover.xml"
showUncoveredFiles="true"
/>
</logging>
</phpunit>