-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
19 lines (19 loc) · 648 Bytes
/
phpunit.xml.dist
File metadata and controls
19 lines (19 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="./vendor/autoload.php">
<coverage>
<include>
<file>./src/DeflateWriter.php</file>
<file>./src/Index.php</file>
<file>./src/PlainFileWriter.php</file>
<file>./src/Sitemap.php</file>
<file>./src/TempFileGZIPWriter.php</file>
<file>./src/UrlEncoderTrait.php</file>
<file>./src/WriterInterface.php</file>
</include>
</coverage>
<testsuites>
<testsuite name="Sitemap test suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>