Skip to content

Commit a22ed36

Browse files
committed
Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
1 parent a9e5063 commit a22ed36

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Tests/Command/DoctrineCommandTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
use Doctrine\DBAL\Migrations\Configuration\Configuration;
77
use Symfony\Component\DependencyInjection\ContainerBuilder;
88
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
9+
use PHPUnit\Framework\TestCase;
910

10-
class DoctrineCommandTest extends \PHPUnit\Framework\TestCase
11+
class DoctrineCommandTest extends TestCase
1112
{
1213
public function testConfigureMigrations()
1314
{

Tests/DependencyInjection/DoctrineMigrationsExtensionTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
use Doctrine\DBAL\Migrations\Configuration\Configuration;
77
use Symfony\Component\DependencyInjection\ContainerBuilder;
88
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
9+
use PHPUnit\Framework\TestCase;
910

10-
class DoctrineMigrationsExtensionTest extends \PHPUnit_Framework_TestCase
11+
class DoctrineMigrationsExtensionTest extends TestCase
1112
{
1213
public function testOrganizeMigrations()
1314
{

0 commit comments

Comments
 (0)