forked from ivandarmawan/DOSBox-PHP-VSCODE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
33 lines (30 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.0/phpunit.xsd"
bootstrap="bootstrap.php"
backupGlobals="false"
verbose="false">
<testsuites>
<testsuite name="dosbox">
<directory suffix="*Test.php">./tests</directory>
<!--<file>tests/Command/Library/CmdCdTest.php</file>-->
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage" title="PHPUnit" highlight="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<!--<log type="coverage-xml" target="build/logs/coverage"/>-->
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>src/Framework/Assert/Functions.php</file>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>