Commit f9da4d5b authored by Jeremy Mikola's avatar Jeremy Mikola

All test classes can extend MongoDB\Tests\TestCase

parent 875dc92f
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
namespace MongoDB\Tests\Model; namespace MongoDB\Tests\Model;
use MongoDB\Model\CachingIterator; use MongoDB\Model\CachingIterator;
use MongoDB\Tests\TestCase;
use Exception; use Exception;
use PHPUnit\Framework\TestCase;
class CachingIteratorTest extends TestCase class CachingIteratorTest extends TestCase
{ {
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
namespace MongoDB\Tests; namespace MongoDB\Tests;
use PHPUnit\Framework\TestCase as BaseTestCase;
use RecursiveDirectoryIterator; use RecursiveDirectoryIterator;
use RecursiveIteratorIterator; use RecursiveIteratorIterator;
use ReflectionClass; use ReflectionClass;
...@@ -12,7 +11,7 @@ use RegexIterator; ...@@ -12,7 +11,7 @@ use RegexIterator;
/** /**
* Pedantic tests that have nothing to do with functional correctness. * Pedantic tests that have nothing to do with functional correctness.
*/ */
class PedantryTest extends BaseTestCase class PedantryTest extends TestCase
{ {
/** /**
* @dataProvider provideProjectClassNames * @dataProvider provideProjectClassNames
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment