-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (28 loc) · 756 Bytes
/
phpunit.xml
File metadata and controls
31 lines (28 loc) · 756 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
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/boot_strap.php"
colors="true"
verbose="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
reportDirectory=""
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="SWANSOFT Test Suite">
<directory suffix="test.class.php">tests/member_test</directory>
<directory suffix="test.class.php">tests/api_test</directory>
</testsuite>
</testsuites>
<groups>
</groups>
<filter>
<blacklist>
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory>
<directory suffix=".php">vendor</directory>
</blacklist>
</filter>
</phpunit>