forked from brewlabs/sendpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·29 lines (29 loc) · 896 Bytes
/
phpunit.xml
File metadata and controls
executable file
·29 lines (29 loc) · 896 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
<phpunit
bootstrap="bootstrap_tests.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false"
verbose="true"
strict="false"
>
<testsuites>
<!-- Default test suite to run all tests -->
<testsuite>
<directory prefix="test_" suffix=".php">tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="coverage-php" target="build/cov/coverage.php"/>
<log type="coverage-text" target="php://stdout" />
</logging>
</phpunit>