Skip to content

Commit 965617b

Browse files
committed
upload phpunit.xml.dist
1 parent 67a00d9 commit 965617b

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ php-git-hooks.yml
66
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
77
# composer.lock
88
.idea
9-
phpunit.xml.dist

phpunit.xml.dist

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.4/phpunit.xsd"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
verbose="false"
9+
syntaxCheck="true"
10+
stopOnError="false"
11+
stopOnFailure="false"
12+
backupGlobals="false"
13+
bootstrap="./vendor/autoload.php">
14+
<testsuites>
15+
<testsuite name="PhpGitHooks Unit Tests">
16+
<directory>./src/PhpGitHooks/Tests/</directory>
17+
</testsuite>
18+
</testsuites>
19+
20+
<listeners>
21+
<listener class="\Mockery\Adapter\Phpunit\TestListener"/>
22+
<listener class="\MyBuilder\PhpunitAccelerator\TestListener"/>
23+
</listeners>
24+
25+
<filter>
26+
<blacklist>
27+
<directory>./bin</directory>
28+
<directory>./vendor</directory>
29+
<directory>./src/PhpGitHooks/Infrastructure</directory>
30+
</blacklist>
31+
<whitelist>
32+
<directory>./src/PhpGitHooks/Application</directory>
33+
</whitelist>
34+
</filter>
35+
</phpunit>
36+

0 commit comments

Comments
 (0)