-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
57 lines (57 loc) · 2.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="AMQP Agent Test Suite - Unit Tests">
<!--
Using file tag instead of directory and exclude because you have to choose between
directory tag and exclude tag or file tag. The problem with this testsuite is the
ConsumerTest depends on PublisherTest and due to alphabetical order they ran in reverse.
-->
<file>tests/Exception/AmqpAgentExceptionTest.php</file>
<file>tests/ClientTest.php</file>
<file>tests/ConfigTest.php</file>
<file>tests/Config/AbstractParametersTest.php</file>
<file>tests/Helper/UtilityTest.php</file>
<file>tests/Helper/LoggerTest.php</file>
<file>tests/Helper/SerializerTest.php</file>
<file>tests/Helper/SingletonTest.php</file>
<file>tests/Helper/IDGeneratorTest.php</file>
<file>tests/Helper/EventTest.php</file>
<file>tests/Helper/ClassProxyTest.php</file>
<file>tests/Helper/ArrayProxyTest.php</file>
<file>tests/Worker/AbstractWorkerTest.php</file>
<file>tests/Worker/PublisherTest.php</file>
<file>tests/Worker/ConsumerTest.php</file>
<file>tests/Worker/PublisherSingletonTest.php</file>
<file>tests/Worker/ConsumerSingletonTest.php</file>
<file>tests/RPC/AbstractEndpointTest.php</file>
<file>tests/RPC/ClientEndpointTest.php</file>
<file>tests/RPC/ServerEndpointTest.php</file>
<!--
<directory>tests</directory>
<exclude>tests/TestCase.php</exclude>
-->
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/phpunit"/>
<log type="coverage-text" target="build/coverage/text.txt"/>
<log type="coverage-clover" target="build/coverage/clover.xml"/>
<log type="coverage-xml" target="build/coverage"/>
<log type="junit" target="build/phpunit/coverage.junit.xml"/>
</logging>
</phpunit>