Files
apart-moment/tests/phpunit/Thelia/Tests/Command/BaseCommandTest.php
2021-03-23 13:54:38 +01:00

36 lines
1.4 KiB
PHP

<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Tests\Command;
use Symfony\Component\HttpKernel\KernelInterface;
/**
* base class for testing command line command
*
* Class BaseCommandTest
* @package Thelia\Tests\Command
* @author Manuel Raynaud <manu@raynaud.io>
*/
abstract class BaseCommandTest extends \PHPUnit_Framework_TestCase
{
/**
* @return KernelInterface
*/
public function getKernel()
{
$kernel = $this->getMock("Symfony\Component\HttpKernel\KernelInterface");
return $kernel;
}
}