-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 771 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 771 Bytes
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
<phpunit bootstrap="tests/Bootstrap.php">
<extensions>
<extension class="\Tests\Hooks\IntegrationErrorReport"/>
</extensions>
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
<exclude>./tests/IntegrationTest.php</exclude>
</testsuite>
<testsuite name="integration">
<file>./tests/IntegrationTest.php</file>
</testsuite>
<testsuite name="fetcher">
<directory>tests/Repository/Fetcher</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<php>
<const name="MKSQL_PHPUNIT_RUNNING" value="TRUE"/>
</php>
</phpunit>