File tree Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 6060 run : echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
6161
6262 - name : Run PHPUnit
63- run : vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=test-report.xml --testdox --verbose
63+ run : vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=test-report.xml --testdox
6464
6565 - name : Upload code coverage
6666 uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 1414 "php" : " ~8.1.0 || ~8.2.0" ,
1515 "kreait/firebase-php" : " ^7.0" ,
1616 "illuminate/contracts" : " ^9.0 || ^10.0" ,
17- "illuminate/support" : " ^9.0 || ^10.0" ,
17+ "illuminate/support" : " ^9.0 || ^10.0" ,
1818 "symfony/cache" : " ^6.1.2"
1919 },
2020 "require-dev" : {
2121 "orchestra/testbench" : " ^7.0 || ^8.0" ,
22- "symplify/easy-coding-standard" : " ^11.1"
22+ "symplify/easy-coding-standard" : " ^11.1" ,
23+ "phpunit/phpunit" : " ^9.6"
2324 },
2425 "autoload" : {
2526 "psr-4" : {
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" beStrictAboutOutputDuringTests =" true" colors =" true" >
2+ <phpunit
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : noNamespaceSchemaLocation =" ./vendor/phpunit/phpunit/phpunit.xsd"
5+ beStrictAboutOutputDuringTests =" true"
6+ colors =" true"
7+ >
8+ <testsuites >
9+ <testsuite name =" Test Suite" >
10+ <directory >tests</directory >
11+ </testsuite >
12+ </testsuites >
13+
314 <coverage ignoreDeprecatedCodeUnits =" true" processUncoveredFiles =" true" >
415 <include >
516 <directory suffix =" .php" >src</directory >
819 <directory >src/Facades</directory >
920 </exclude >
1021 </coverage >
11- <testsuites >
12- <testsuite name =" Test Suite" >
13- <directory >tests</directory >
14- </testsuite >
15- </testsuites >
22+
1623 <php >
1724 <ini name =" date.timezone" value =" UTC" />
1825 <server name =" APP_ENV" value =" testing" />
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public function it_provides_components(): void
3232 public function it_does_not_provide_optional_components (): void
3333 {
3434 $ this ->expectException (\Throwable::class);
35- $ this ->expectDeprecationMessageMatches ('/unable/i ' );
35+ $ this ->expectExceptionMessageMatches ('/unable/i ' );
3636
3737 $ this ->app ->make (Firebase \Contract \Firestore::class);
3838 }
You can’t perform that action at this time.
0 commit comments