We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa829d commit 2142966Copy full SHA for 2142966
2 files changed
.gitignore
@@ -1,6 +1,5 @@
1
.DS_Store
2
composer.lock
3
-phpunit.xml
4
vendor
5
.idea
6
composer.phar
phpunit.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
+ beStrictAboutChangesToGlobalState="true"
+ beStrictAboutOutputDuringTests="true"
+ colors="true"
7
+ bootstrap="tests/bootstrap.php"
8
+>
9
+ <testsuites>
10
+ <testsuite name="PHP-View Test Suite">
11
+ <directory>./tests/</directory>
12
+ </testsuite>
13
+ </testsuites>
14
+ <coverage processUncoveredFiles="true">
15
+ <include>
16
+ <directory suffix=".php">./src/</directory>
17
+ </include>
18
+ </coverage>
19
+</phpunit>
0 commit comments