Klimov Paul
12 years ago
2 changed files with 34 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
require_once(realpath(__DIR__.'/../../../../yii/requirements/YiiRequirementChecker.php')); |
||||||
|
|
||||||
|
use yiiunit\TestCase; |
||||||
|
|
||||||
|
/** |
||||||
|
* Test case for {@link YiiRequirementChecker}. |
||||||
|
* @see YiiRequirementChecker |
||||||
|
*/ |
||||||
|
class YiiRequirementCheckerTest extends TestCase |
||||||
|
{ |
||||||
|
public function testCreate() { |
||||||
|
$requirementChecker = new YiiRequirementChecker(); |
||||||
|
$this->assertTrue(is_object($requirementChecker)); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
/** |
||||||
|
* YiiRequirementChecker allows checking, if current system meets the requirements for running the application. |
||||||
|
* |
||||||
|
* @author Paul Klimov <klimov.paul@gmail.com> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
class YiiRequirementChecker |
||||||
|
{ |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue