74 lines
1.8 KiB
PHP
74 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* TestCase.php
|
|
* @author Revin Roman
|
|
* @link https://rmrevin.ru
|
|
*/
|
|
|
|
namespace rmrevin\yii\fontawesome\tests\unit;
|
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
/**
|
|
* Class TestCase
|
|
* @package rmrevin\yii\fontawesome\tests\unit
|
|
* This is the base class for all yii framework unit tests.
|
|
*/
|
|
abstract class TestCase extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public static $params;
|
|
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->mock_application();
|
|
}
|
|
|
|
/**
|
|
* Populates Yii::$app with a new application
|
|
* The application will be destroyed on tearDown() automatically.
|
|
* @param string $appClass
|
|
*/
|
|
protected function mock_application($appClass = '\yii\console\Application')
|
|
{
|
|
// for update self::$params
|
|
$this->get_param('id');
|
|
|
|
/** @var \yii\console\Application $app */
|
|
new $appClass(self::$params);
|
|
}
|
|
|
|
/**
|
|
* Returns a test configuration param from /data/config.php
|
|
* @param string $name params name
|
|
* @param mixed $default default value to use when param is not set.
|
|
* @return mixed the value of the configuration param
|
|
*/
|
|
public function get_param($name, $default = null)
|
|
{
|
|
if (self::$params === null) {
|
|
self::$params = require(__DIR__ . '/config/main.php');
|
|
$main_local = __DIR__ . '/config/main-local.php';
|
|
if (file_exists($main_local)) {
|
|
self::$params = ArrayHelper::merge(self::$params, require($main_local));
|
|
}
|
|
}
|
|
|
|
return isset(self::$params[$name]) ? self::$params[$name] : $default;
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* Destroys application in Yii::$app by setting it to null.
|
|
*/
|
|
protected function destroy_application()
|
|
{
|
|
\Yii::$app = null;
|
|
}
|
|
}
|