File tree Expand file tree Collapse file tree 2 files changed +17
-11
lines changed
Expand file tree Collapse file tree 2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 55 colors =" true" convertErrorsToExceptions =" true"
66 convertNoticesToExceptions =" true"
77 convertWarningsToExceptions =" true"
8+ convertDeprecationsToExceptions =" true"
89 processIsolation =" false"
910 stopOnFailure =" false"
11+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
12+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
1013 >
1114 <testsuites >
1215 <testsuite name =" Package Test Suite" >
1316 <directory suffix =" .php" >./tests/</directory >
1417 </testsuite >
1518 </testsuites >
16-
17- <filter >
18- <whitelist >
19+ <coverage >
20+ <include >
1921 <directory >./src/Kris</directory >
20- < exclude >
21- < file >./src/Kris/LaravelFormBuilder/FormBuilderServiceProvider.php</ file >
22- <file >./src/Kris/LaravelFormBuilder/Facades/FormBuilder .php</file >
23- <file >./src/Kris/LaravelFormBuilder/Console/FormMakeCommand .php</file >
24- <file >./src/Kris/LaravelFormBuilder/FormBuilderTrait .php</file >
25- </ exclude >
26- </whitelist >
27- </filter >
22+ </ include >
23+ < exclude >
24+ <file >./src/Kris/LaravelFormBuilder/FormBuilderServiceProvider .php</file >
25+ <file >./src/Kris/LaravelFormBuilder/Facades/FormBuilder .php</file >
26+ <file >./src/Kris/LaravelFormBuilder/Console/FormMakeCommand .php</file >
27+ <file >./src/Kris/LaravelFormBuilder/FormBuilderTrait.php</ file >
28+ </exclude >
29+ </coverage >
2830</phpunit >
Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ public function alterFieldValues(array &$values)
118118
119119abstract class FormBuilderTestCase extends TestCase {
120120
121+ use \Illuminate \Foundation \Testing \Concerns \InteractsWithDeprecationHandling;
122+
121123 /**
122124 * @var \Illuminate\View\Factory
123125 */
@@ -182,6 +184,8 @@ public function setUp(): void
182184 {
183185 parent ::setUp ();
184186
187+ $ this ->withoutDeprecationHandling ();
188+
185189 $ this ->view = $ this ->app ['view ' ];
186190 $ this ->translator = $ this ->app ['translator ' ];
187191 $ this ->request = $ this ->app ['request ' ];
You can’t perform that action at this time.
0 commit comments