Skip to content

Commit

Permalink
Replaced PHPUnit_Framework_TestCase with namespaced version
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioBlazek committed Feb 8, 2017
1 parent 776265a commit 3dd7b99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Tests/Templating/Twig/AdminGlobalVariableTest.php
Expand Up @@ -3,9 +3,9 @@
namespace Netgen\TagsBundle\Tests\Templating\Twig;

use Netgen\TagsBundle\Templating\Twig\AdminGlobalVariable;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class AdminGlobalVariableTest extends PHPUnit_Framework_TestCase
class AdminGlobalVariableTest extends TestCase
{
/**
* @var \Netgen\TagsBundle\Templating\Twig\AdminGlobalVariable
Expand Down
4 changes: 2 additions & 2 deletions Tests/Templating/Twig/Extension/AdminExtensionTest.php
Expand Up @@ -4,11 +4,11 @@

use Netgen\TagsBundle\Templating\Twig\AdminGlobalVariable;
use Netgen\TagsBundle\Templating\Twig\Extension\AdminExtension;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Twig_Extension;
use Twig_Extension_GlobalsInterface;

class AdminExtensionTest extends PHPUnit_Framework_TestCase
class AdminExtensionTest extends TestCase
{
/**
* @var \Netgen\TagsBundle\Templating\Twig\Extension\AdminExtension
Expand Down
4 changes: 2 additions & 2 deletions Tests/Templating/Twig/Extension/NetgenTagsExtensionTest.php
Expand Up @@ -11,11 +11,11 @@
use Netgen\TagsBundle\API\Repository\Values\Tags\Tag;
use Netgen\TagsBundle\Core\Repository\TagsService;
use Netgen\TagsBundle\Templating\Twig\Extension\NetgenTagsExtension;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Twig_Extension;
use Twig_SimpleFunction;

class NetgenTagsExtensionTest extends PHPUnit_Framework_TestCase
class NetgenTagsExtensionTest extends TestCase
{
/**
* @var \Netgen\TagsBundle\Templating\Twig\Extension\NetgenTagsExtension
Expand Down

0 comments on commit 3dd7b99

Please sign in to comment.