forked from wagnert/import-cli-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
30 lines (30 loc) · 1.21 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
<phpunit bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="techdivision/import-cli-simple PHPUnit testsuite">
<directory suffix="Test.php">tests/unit</directory>
<directory suffix="Test.php">vendor/techdivision/*/tests</directory>
</testsuite>
<testsuite name="techdivision/import-cli-simple PHPUnit integration testsuite">
<directory suffix="Test.php">tests/integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<directory suffix=".php">vendor/techdivision/*/src
</directory>
<exclude>
<directory prefix="Mock">src</directory>
<directory suffix="Test.php">src</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="target/reports/unit/coverage" />
<log type="coverage-clover" target="target/reports/unit/clover.xml" />
<log type="junit" target="target/reports/unit/junit.xml" logIncompleteSkipped="false" />
</logging>
<php>
<ini name="date.timezone" value="Europe/Berlin" />
</php>
</phpunit>