We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd5bf69 commit 3bb9d0fCopy full SHA for 3bb9d0f
1 file changed
phpunit.xml.dist
@@ -0,0 +1,21 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd">
5
+ <testsuites>
6
+ <testsuite name="Library Test Suite">
7
+ <directory>Tests</directory>
8
+ </testsuite>
9
+ </testsuites>
10
+
11
+ <!-- Filter for code coverage -->
12
+ <filter>
13
+ <whitelist processUncoveredFilesFromWhitelist="true">
14
+ <directory suffix=".php">src/</directory>
15
+ <exclude>
16
+ <directory>vendor</directory>
17
18
+ </exclude>
19
+ </whitelist>
20
+ </filter>
21
+</phpunit>
0 commit comments