Skip to content

Commit 3e7aa82

Browse files
committed
Added phpunit config file
1 parent f1735a3 commit 3e7aa82

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

test-cases/phpunit.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
convertErrorsToExceptions="true"
4+
convertNoticesToExceptions="true"
5+
convertWarningsToExceptions="true"
6+
colors="true"
7+
strict="false"
8+
processIsolation="false"
9+
stopOnFailure="false"
10+
syntaxCheck="true"
11+
backupGlobals="false"
12+
bootstrap="bootstrap.php"
13+
verbose="true">
14+
<testsuites>
15+
<testsuite name='all'>
16+
<directory>includes/classes/</directory>
17+
</testsuite>
18+
</testsuites>
19+
</phpunit>

0 commit comments

Comments
 (0)