Skip to content

Commit

Permalink
[TASK] fix php unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frostblogNet committed Mar 8, 2020
1 parent bf0b2a2 commit 0e26e86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Test/Unit/Model/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
namespace FireGento\MageSetup\Test\Unit\Model;

use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

/**
* Class Config
*
* @package FireGento\MageSetup\Test\Unit\Model
*/
class Config extends \FireGento\MageSetup\TestCase
class Config extends TestCase
{
/**
* @var \FireGento\MageSetup\Model\Config
Expand Down
3 changes: 2 additions & 1 deletion Test/Unit/Model/System/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
namespace FireGento\MageSetup\Test\Unit\Model\System;

use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

/**
* Class Config
*
* @package FireGento\MageSetup\Test\Unit\Model\System
*/
class Config extends \FireGento\MageSetup\TestCase
class Config extends TestCase
{
/**
* @var \FireGento\MageSetup\Model\Config
Expand Down
3 changes: 2 additions & 1 deletion Test/Unit/Plugin/Catalog/ListProductPluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
use Magento\Catalog\Model\Product;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\View\LayoutInterface;
use PHPUnit\Framework\TestCase;

class ListProductPluginTest extends \FireGento\MageSetup\TestCase
class ListProductPluginTest extends TestCase
{
/** @var ScopeConfigInterface | \PHPUnit_Framework_MockObject_MockObject */
protected $scopeConfigMock;
Expand Down

0 comments on commit 0e26e86

Please sign in to comment.