-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
24 lines (24 loc) · 856 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
<phpunit
bootstrap="./vendor/autoload.php"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<testsuites>
<testsuite name="KeyLighter">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./Formatter/</directory>
<directory suffix=".php">./Matcher/</directory>
<directory suffix=".php">./Parser/</directory>
<directory suffix=".php">./Utils/</directory>
<directory suffix=".php">./Language/</directory>
<file>./KeyLighter.php</file>
<exclude>
<file>./Formatter/DebugFormatter.php</file>
<file>./Utils/Console.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>