-
Notifications
You must be signed in to change notification settings - Fork 1
/
PhpUnit.xml
26 lines (26 loc) · 892 Bytes
/
PhpUnit.xml
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
<?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/SimplyAdmire.CrowdConnector/Tests/Unit</directory>
<exclude>../../../Packages/Libraries</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory>../../../Packages/*/*/Classes</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="./Reports/UnitTests.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>