forked from OCLC-Developer-Network/worldcat-discovery-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
37 lines (37 loc) · 1.22 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
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
<testsuites>
<testsuite name="Bib">
<directory>tests/bib</directory>
</testsuite>
<testsuite name="BibSearch">
<directory>tests/bibSearch</directory>
</testsuite>
<testsuite name="Offers">
<directory>tests/offers</directory>
</testsuite>
<testsuite name="Database">
<directory>tests/database</directory>
</testsuite>
<testsuite name="Entities">
<directory>tests/entities</directory>
</testsuite>
<testsuite name="Errors">
<directory>tests/errors</directory>
</testsuite>
<testsuite name="Config">
<directory>tests/config</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="PHPUnit_Util_Log_VCR" file="vendor/php-vcr/phpunit-testlistener-vcr/PHPUnit/Util/Log/VCR.php" />
</listeners>
</phpunit>