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 aa84e2a commit cdf84bdCopy full SHA for cdf84bd
.gitignore
@@ -1,3 +1,4 @@
1
+phpunit.xml
2
composer.lock
3
composer.phar
4
vendor/
phpunit.xml.dist
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<phpunit bootstrap="vendor/autoload.php" colors="true">
+ <testsuites>
5
+ <testsuite name="Value Test Suite">
6
+ <directory suffix="Test.php">./test/</directory>
7
+ </testsuite>
8
+ </testsuites>
9
10
+ <filter>
11
+ <whitelist>
12
+ <directory suffix=".php">./src/Value/</directory>
13
+ </whitelist>
14
+ </filter>
15
+</phpunit>
0 commit comments