-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathphpunit.xml
23 lines (22 loc) · 855 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<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="stomp-php Functional Test Suite">
<directory>tests/functional/</directory>
</testsuite>
<testsuite name="stomp-php Stubbed Test Suite">
<file>tests/stubbed</file>
</testsuite>
</testsuites>
</phpunit>