File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,3 @@ php-git-hooks.yml
6
6
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
7
7
# composer.lock
8
8
.idea
9
- phpunit.xml.dist
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments