File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 33/.php_cs.dist export-ignore
44/.github export-ignore
55/tests
6+ /phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change 3535 run : composer update
3636
3737 - name : Run test suite
38- run : vendor/bin/phpunit --colors tests/Unit/
38+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 1+ <phpunit
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
4+ beStrictAboutTestsThatDoNotTestAnything =" true"
5+ cacheResult =" false"
6+ colors =" true"
7+ convertDeprecationsToExceptions =" true"
8+ convertErrorsToExceptions =" true"
9+ convertNoticesToExceptions =" true"
10+ convertWarningsToExceptions =" true"
11+ failOnRisky =" true"
12+ failOnWarning =" true"
13+ forceCoversAnnotation =" false"
14+ processIsolation =" false"
15+ stopOnError =" false"
16+ stopOnFailure =" false"
17+ stopOnIncomplete =" false"
18+ stopOnSkipped =" false"
19+ verbose =" false"
20+ >
21+ <testsuites >
22+ <testsuite name =" Unit tests" >
23+ <directory >tests/Unit/</directory >
24+ </testsuite >
25+ </testsuites >
26+ <php >
27+ <ini name =" error_reporting" value =" E_ALL" />
28+ </php >
29+ </phpunit >
You can’t perform that action at this time.
0 commit comments