forked from phpbb/support-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
47 lines (44 loc) · 1.46 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
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
backupStaticAttributes="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="true"
strict="true"
bootstrap="test/php/bootstrap.php">
<testsuites>
<testsuite name="phpBB Support Toolkit Test Suite">
<directory suffix="_test.php">./test/php/tests/</directory>
</testsuite>
</testsuites>
<filter>
<backlist>
<directory suffix=".php">stk/phpBB/</directory>
<directory suffix=".php">stk/vendor/</directory>
</backlist>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">stk/</directory>
<exclude>
<file>stk/config.php</file>
<file>stk/index.php</file>
<file>stk/includes/bootstrap.php</file>
<file>stk/includes/constants.php</file>
</exclude>
</whitelist>
</filter>
<!-- Update to match your local environment.
Accepts the normal phpBB configuration options. -->
<php>
<server name="PHPBB_TEST_DBMS" value="" />
<server name="PHPBB_TEST_DBHOST" value="" />
<server name="PHPBB_TEST_DBPORT" value="" />
<server name="PHPBB_TEST_DBNAME" value="" />
<server name="PHPBB_TEST_DBUSER" value="" />
<server name="PHPBB_TEST_DBPASSWD" value="" />
<server name="PHPBB_TEST_TABLE_PREFIX" value="" />
</php>
</phpunit>