Skip to content

Commit

Permalink
Fix for #2859
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos authored and sebastianbergmann committed Nov 27, 2017
1 parent 96e57be commit bc95dfe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Framework/TestSuite.php
Expand Up @@ -348,6 +348,10 @@ public function addTestFile($filename)
}

foreach ($newClasses as $className) {
if ($className === 'PHPUnit_Framework_TestSuite_DataProvider') {
continue;
}

$class = new ReflectionClass($className);

if (!$class->isAbstract()) {
Expand Down

0 comments on commit bc95dfe

Please sign in to comment.