-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
24 lines (24 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" stopOnFailure="true" bootstrap="module/InterpretersOffice/test/Bootstrap.php">
<testsuites>
<testsuite name="Core">
<directory>./module/InterpretersOffice/test</directory>
<directory>./module/Admin/test</directory>
<exclude>./module/InterpretersOffice/test/AbstractControllerTest.php</exclude>
<exclude>./module/InterpretersOffice/test/Controller/AccountControllerTest.php</exclude>
<exclude>./module/InterpretersOffice/test/ExampleProphecyTest.php</exclude>
<exclude>./module/Admin/test/WebDriver/</exclude>
<exclude>./module/InterpretersOffice/test/codecept/</exclude>
</testsuite>
<testsuite name="Requests">
<directory>./module/Requests/test</directory>
</testsuite>
<testsuite name="Notes">
<directory>./module/Notes/test</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_log" value="./data/test.error.log"/>
<ini name="log_errors" value="On"/>
</php>
</phpunit>