forked from voryx/Thruway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
26 lines (24 loc) · 982 Bytes
/
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
<?xml version="1.0" encoding="utf-8" ?>
<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="Thruway Tests">
<directory>tests/</directory>
<exclude>tests/WAMP/ReplaceOrphanedSessionTest.php</exclude>
<exclude>tests/WAMP/PingTest.php</exclude>
<exclude>tests/Crossbar/CrossbarTest.php</exclude>
<!-- tests that need to be reworked for 0.4 or support hasn't been ported over yet -->
<!--<exclude>tests/WAMP/SessionMetaTest.php</exclude>-->
<!--<exclude>tests/WAMP/AuthorizingRealmTest.php</exclude>-->
</testsuite>
</testsuites>
</phpunit>