Skip to content

Commit cdf84bd

Browse files
committed
added phpunit.xml config
1 parent aa84e2a commit cdf84bd

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
phpunit.xml
12
composer.lock
23
composer.phar
34
vendor/

phpunit.xml.dist

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit bootstrap="vendor/autoload.php" colors="true">
4+
<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

Comments
 (0)