Skip to content

Commit 39d9a24

Browse files
authored
Create phpunit.xml
1 parent 530fdca commit 39d9a24

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

phpunit.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
3+
backupGlobals="true"
4+
backupStaticAttributes="false"
5+
bootstrap="./vendor/autoload.php"
6+
cacheResult="false"
7+
cacheTokens="false"
8+
colors="true"
9+
convertErrorsToExceptions="true"
10+
convertNoticesToExceptions="true"
11+
convertWarningsToExceptions="true"
12+
forceCoversAnnotation="false"
13+
processIsolation="false"
14+
stopOnError="false"
15+
stopOnFailure="false"
16+
stopOnIncomplete="false"
17+
stopOnSkipped="false"
18+
stopOnRisky="false"
19+
timeoutForSmallTests="5"
20+
timeoutForMediumTests="10"
21+
timeoutForLargeTests="15"
22+
verbose="false">
23+
<testsuites>
24+
<testsuite name="WebSecure Web Auth Interface Test Suite">
25+
<directory suffix="Test.php">./tests</directory>
26+
</testsuite>
27+
</testsuites>
28+
<filter>
29+
<whitelist processUncoveredFilesFromWhitelist="true">
30+
<directory suffix=".php">./src</directory>
31+
</whitelist>
32+
</filter>
33+
<logging>
34+
<log type="coverage-clover" target="./build/logs/clover.xml"/>
35+
</logging>
36+
</phpunit>

0 commit comments

Comments
 (0)