-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (19 loc) · 885 Bytes
/
phpunit.xml
File metadata and controls
21 lines (19 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- http://phpunit.de/manual/4.0/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.0/phpunit.xsd" bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="core">
<directory>tests/suites/core</directory>
</testsuite>
<testsuite name="adapters">
<directory>tests/suites/adapters</directory>
</testsuite>
</testsuites>
<!--
<logging>
<log type="coverage-html" target="build/coverage" title="CMSScanner" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="90" />
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
</logging>
-->
</phpunit>