-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
35 lines (35 loc) · 1.43 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
34
35
<phpunit
bootstrap="tests/bootstrap.php"
defaultTestSuite="read_only_tests"
verbose="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd">
<logging>
<log type="coverage-html" target="tests_output/coverage.html"/>
<log type="coverage-text" target="tests_output/coverage.txt"/>
<log type="coverage-xml" target="tests_output/coverage.xml"/>
<log type="junit" target="tests_output/junit.xml"/>
<log type="testdox-html" target="tests_output/testdox.html"/>
<log type="testdox-text" target="tests_output/testdox.txt"/>
<log type="testdox-xml" target="tests_output/testdox.xml"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory>tests</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="read_only_tests">
<file>tests/assay_detail_test.php</file>
<file>tests/assay_model_test.php</file>
<file>tests/fork_test.php</file>
<file>tests/parallel_curl_test.php</file>
<file>tests/RouteTest.php</file>
<file>tests/simple_xml_test.php</file>
</testsuite>
<testsuite name="all_tests">
<directory>tests/*_test.php</directory>
<directory>tests/*Test.php</directory>
</testsuite>
</testsuites>
</phpunit>