Skip to content

Commit 2142966

Browse files
committed
Update phpunit settings
1 parent 7aa829d commit 2142966

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.DS_Store
22
composer.lock
3-
phpunit.xml
43
vendor
54
.idea
65
composer.phar

phpunit.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4+
beStrictAboutChangesToGlobalState="true"
5+
beStrictAboutOutputDuringTests="true"
6+
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

Comments
 (0)