File tree 3 files changed +35
-1
lines changed
3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 5
5
composer.lock
6
6
composer.phar
7
7
vendor
8
+ # phpunit
9
+ build
Original file line number Diff line number Diff line change 31
31
"issues" : " http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt" ,
32
32
"source" : " https://github.com/pear/Console_Getopt"
33
33
},
34
- "type" : " library"
34
+ "type" : " library" ,
35
+ "require" : {
36
+ "phpunit/phpunit" : " <=8"
37
+ }
35
38
}
Original file line number Diff line number Diff line change
1
+ <phpunit bootstrap =" vendor/autoload.php"
2
+ cacheTokens =" false"
3
+ colors =" true"
4
+ convertErrorsToExceptions =" true"
5
+ convertNoticesToExceptions =" true"
6
+ convertWarningsToExceptions =" true"
7
+ stopOnError =" false"
8
+ stopOnFailure =" false"
9
+ stopOnIncomplete =" false"
10
+ stopOnSkipped =" false" >
11
+
12
+ <testsuites >
13
+ <testsuite name =" Test Suite" >
14
+ <directory suffix =" .phpt" >tests/</directory >
15
+ </testsuite >
16
+ </testsuites >
17
+
18
+ <filter >
19
+ <whitelist >
20
+ <directory suffix =" .php" >Console/</directory >
21
+ </whitelist >
22
+ </filter >
23
+
24
+ <logging >
25
+ <log type =" coverage-clover" target =" build/logs/clover.xml" />
26
+ <log type =" coverage-html" target =" build/coverage/" />
27
+ </logging >
28
+
29
+ </phpunit >
You can’t perform that action at this time.
0 commit comments