forked from kriswallsmith/Buzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
25 lines (21 loc) · 775 Bytes
/
phpunit.xml.dist
File metadata and controls
25 lines (21 loc) · 775 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Buzz Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="TEST_SERVER" value="http://127.0.0.1:10000/server.php" />
<!-- <server name="BUZZ_TEST_SERVER" value="http://127.0.0.1:8080" /> -->
<!-- <server name="TEST_PROXY" value="localhost:3128" /> -->
</php>
<filter>
<whitelist>
<directory suffix=".php">./lib/</directory>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit>