We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a319b9e commit faa8b2bCopy full SHA for faa8b2b
phpunit.xml.dist
@@ -0,0 +1,28 @@
1
+<?xml version="1.0"?>
2
+<!--
3
+To change this license header, choose License Headers in Project Properties.
4
+To change this template file, choose Tools | Templates
5
+and open the template in the editor.
6
+-->
7
+
8
+<!-- see http://www.phpunit.de/wiki/Documentation -->
9
+<phpunit bootstrap="./vendor/autoload.php"
10
+ colors="false"
11
+ convertErrorsToExceptions="true"
12
+ convertNoticesToExceptions="true"
13
+ convertWarningsToExceptions="true"
14
+ stopOnFailure="false">
15
16
+ <filter>
17
+ <whitelist>
18
+ <directory>./src</directory>
19
+ </whitelist>
20
+ </filter>
21
22
+ <testsuites>
23
+ <testsuite name="Test Suite">
24
+ <directory>./tests/</directory>
25
+ </testsuite>
26
+ </testsuites>
27
28
+</phpunit>
0 commit comments