forked from giorgiosironi/phpunit-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
37 lines (32 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by PHP Project Wizard (PPW) 1.1.0-dev on Sat Mar 12 12:47:10 CET 2011 -->
<phpunit bootstrap="phpunit-selenium-bootstrap.php"
backupGlobals="false"
colors="true">
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_HOST" value="127.0.0.1"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_PORT" value="4444"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_BROWSER" value="*firefox"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM2_BROWSER" value="firefox"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_TESTS_URL" value="http://127.0.0.1:8080/"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_PATH" value="/tmp"/>
</php>
<!-- Logs are not accessible in the current CI environment
<logging>
<log type="coverage-html" target="build/coverage" title="PHPUnit"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
</logging>
-->
<testsuites>
<testsuite name="PHPUnit">
<directory suffix="Test.php">Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">PHPUnit</directory>
</whitelist>
</filter>
</phpunit>