forked from thenlabs/stratus-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
27 lines (23 loc) · 849 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
27
<phpunit bootstrap="bootstrap.php">
<extensions>
<extension class="ThenLabs\PyramidalTests\Extension"></extension>
</extensions>
<php>
<env name="PYRAMIDAL_ONLY" value="1"></env>
<env name="SELENIUM_SERVER" value="http://localhost:4444/wd/hub"></env>
<env name="SELENIUM_BROWSER" value="chrome"></env>
<env name="TEST_URL" value="http://localhost:8000/index.php"></env>
<env name="DEBUG" value="0"></env>
</php>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Functional">
<directory>tests/Functional</directory>
</testsuite>
<testsuite name="Integration">
<directory>tests/Integration</directory>
</testsuite>
</testsuites>
</phpunit>