forked from wsdl2phpgenerator/wsdl2phpgenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
44 lines (39 loc) · 1.47 KB
/
phpunit.xml.dist
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
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<!-- A Generator instance seems to pile up configuration if called
multiple times with configurations referencing different WSDLs.
This results in Generators writing code for all WSDLs that has
passed through. -->
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Unit tests">
<directory>tests/src/Unit</directory>
</testsuite>
<testsuite name="Functional tests">
<directory>tests/src/Functional</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="PHPUnit_Util_Log_VCR" file="vendor/php-vcr/phpunit-testlistener-vcr/PHPUnit/Util/Log/VCR.php" />
</listeners>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<!-- Only determine code coverage for directories with our own code, src and lib. -->
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<directory suffix=".php">lib</directory>
</whitelist>
</filter>
</phpunit>