Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added TestCase instead of non namespaced PHPUnit_Framework_TestCase #8

Merged
merged 1 commit into from
Jun 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/lib/Asset/AssetPathResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
namespace EzSystems\EzPlatformDesignEngine\Tests\Asset;

use EzSystems\EzPlatformDesignEngine\Asset\AssetPathResolver;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use org\bovigo\vfs\vfsStream;
use Psr\Log\LoggerInterface;

class AssetPathResolverTest extends PHPUnit_Framework_TestCase
class AssetPathResolverTest extends TestCase
{
public function testResolveAssetPathFail()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/Asset/ProvisionedPathResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
use EzSystems\EzPlatformDesignEngine\Asset\AssetPathResolverInterface;
use EzSystems\EzPlatformDesignEngine\Asset\ProvisionedPathResolver;
use org\bovigo\vfs\vfsStream;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class ProvisionedPathResolverTest extends PHPUnit_Framework_TestCase
class ProvisionedPathResolverTest extends TestCase
{
/**
* @var \PHPUnit_Framework_MockObject_MockObject|AssetPathResolverInterface
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/Asset/ThemePackageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

use EzSystems\EzPlatformDesignEngine\Asset\AssetPathResolverInterface;
use EzSystems\EzPlatformDesignEngine\Asset\ThemePackage;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Asset\PackageInterface;

class ThemePackageTest extends PHPUnit_Framework_TestCase
class ThemePackageTest extends TestCase
{
/**
* @var \PHPUnit_Framework_MockObject_MockObject|\EzSystems\EzPlatformDesignEngine\Asset\AssetPathResolverInterface
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/Templating/TemplatePathRegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
namespace EzSystems\EzPlatformDesignEngine\Tests\Templating;

use EzSystems\EzPlatformDesignEngine\Templating\TemplatePathRegistry;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class TemplatePathRegistryTest extends PHPUnit_Framework_TestCase
class TemplatePathRegistryTest extends TestCase
{
private function getExpectedRelativePath($templateFullPath, $kernelRootDir)
{
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/Templating/ThemeTemplateNameResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
namespace EzSystems\EzPlatformDesignEngine\Tests\Templating;

use EzSystems\EzPlatformDesignEngine\Templating\ThemeTemplateNameResolver;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class ThemeTemplateNameResolverTest extends PHPUnit_Framework_TestCase
class ThemeTemplateNameResolverTest extends TestCase
{
public function templateNameProvider()
{
Expand Down