File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ public static function fromClassReflector(ReflectionClass $class): static
137
137
$ testSuite ->addTestMethod ($ class , $ method );
138
138
}
139
139
140
- if (count ( $ testSuite) === 0 ) {
140
+ if ($ testSuite-> isEmpty () ) {
141
141
Event \Facade::emitter ()->testRunnerTriggeredWarning (
142
142
sprintf (
143
143
'No tests found in class "%s". ' ,
@@ -290,7 +290,13 @@ public function count(): int
290
290
291
291
public function isEmpty (): bool
292
292
{
293
- return empty ($ this ->tests );
293
+ foreach ($ this as $ test ) {
294
+ if (count ($ test ) !== 0 ) {
295
+ return false ;
296
+ }
297
+ }
298
+
299
+ return true ;
294
300
}
295
301
296
302
/**
@@ -337,7 +343,7 @@ public function run(): void
337
343
338
344
$ this ->wasRun = true ;
339
345
340
- if (count ( $ this ) === 0 ) {
346
+ if ($ this -> isEmpty () ) {
341
347
return ;
342
348
}
343
349
@@ -362,7 +368,7 @@ public function run(): void
362
368
$ this ->tests = [];
363
369
$ this ->groups = [];
364
370
365
- while (($ test = array_pop ($ tests )) !== false ) {
371
+ while (($ test = array_pop ($ tests )) !== null ) {
366
372
if (TestResultFacade::shouldStop ()) {
367
373
$ emitter ->testRunnerExecutionAborted ();
368
374
You can’t perform that action at this time.
0 commit comments