-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 1.06 KB
/
phpunit.xml.dist
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
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
forceCoversAnnotation="false"
>
<testsuites>
<testsuite name="Tidbit test suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor</directory>
<directory suffix=".php">csv</directory>
<directory suffix=".php">config</directory>
<directory suffix=".php">custom</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<!-- exclude classes that need to be extended from Sugar classes directly -->
<exclude>
<!-- TeamSets generator extends from Sugar class directly, so code coverage fails for this class -->
<file>src/Generator/TeamSets.php</file>
<file>src/FakeLogger.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>