You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
407 B
27 lines
407 B
12 years ago
|
<?php
|
||
|
namespace yiiunit\framework;
|
||
|
|
||
|
use yiiunit\TestCase;
|
||
|
|
||
|
/**
|
||
|
* YiiBaseTest
|
||
|
*/
|
||
|
class YiiBaseTest extends TestCase
|
||
|
{
|
||
|
public function testAlias()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGetVersion()
|
||
|
{
|
||
|
echo \Yii::getVersion();
|
||
|
$this->assertTrue((boolean)preg_match('~\d+\.\d+(?:\.\d+)?(?:-\w+)?~', \Yii::getVersion()));
|
||
|
}
|
||
|
|
||
|
public function testPowered()
|
||
|
{
|
||
|
$this->assertTrue(is_string(\Yii::powered()));
|
||
|
}
|
||
|
}
|