%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/ppaobm/vendor/miloschuman/yii2-highcharts-widget/tests/ |
Upload File : |
<?php namespace miloschumanunit\highcharts; use yii\helpers\ArrayHelper; /** * This is the base class for all yii framework unit tests. */ abstract class BaseTestCase extends \PHPUnit_Framework_TestCase { public static $params; /** * Clean up after test. * By default the application created with [[mockApplication]] will be destroyed. */ protected function tearDown() { parent::tearDown(); $this->destroyApplication(); } /** * 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 static function getParam($name, $default = null) { if (static::$params === null) { static::$params = require(__DIR__ . '/data/config.php'); } return isset(static::$params[$name]) ? static::$params[$name] : $default; } /** * Populates Yii::$app with a new application * The application will be destroyed on tearDown() automatically. * @param array $config The application configuration, if needed * @param string $appClass name of the application class to create */ protected function mockApplication($config = [], $appClass = '\yii\console\Application') { new $appClass(ArrayHelper::merge([ 'id' => 'testapp', 'basePath' => __DIR__, 'vendorPath' => $this->getVendorPath(), ], $config)); } protected function mockWebApplication($config = [], $appClass = '\yii\web\Application') { new $appClass(ArrayHelper::merge([ 'id' => 'testapp', 'basePath' => __DIR__, 'vendorPath' => $this->getVendorPath(), 'components' => [ 'request' => [ 'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq', 'scriptFile' => __DIR__ .'/index.php', 'scriptUrl' => '/index.php', ], ] ], $config)); } protected function getVendorPath() { $vendor = dirname(dirname(__DIR__)) . '/vendor'; if (!is_dir($vendor)) { $vendor = dirname(dirname(dirname(dirname(__DIR__)))); } return $vendor; } /** * Destroys application in Yii::$app by setting it to null. */ protected function destroyApplication() { if (\Yii::$app && \Yii::$app->has('session', true)) { \Yii::$app->session->close(); } \Yii::$app = null; } /** * Asserting two strings equality ignoring line endings * * @param string $expected * @param string $actual */ public function assertEqualsWithoutLE($expected, $actual) { $expected = str_replace("\r\n", "\n", $expected); $actual = str_replace("\r\n", "\n", $actual); $this->assertEquals($expected, $actual); } }