-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathUnitTests.xml
More file actions
27 lines (27 loc) · 948 Bytes
/
UnitTests.xml
File metadata and controls
27 lines (27 loc) · 948 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
<?xml version="1.0"?>
<phpunit
bootstrap="../../../Build/BuildEssentials/PhpUnit/UnitTestBootstrap.php"
beStrictAboutChangesToGlobalState="true"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="true"
beStrictAboutOutputDuringTests="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
timeoutForSmallTests="0">
<testsuites>
<testsuite name="All tests">
<directory>../../../Packages/Application/RFY.JWT/Tests/Unit</directory>
<exclude>../../../Packages/Libraries</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory>../../../Packages/*/*/Classes</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="junit" target="./build/logs/UnitTests.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>