Incam_IntranetNueva/www/protected/tests/unit/DbTest.php
2012-01-31 17:42:47 +00:00

12 lines
157 B
PHP

<?php
class DbTest extends CTestCase
{
public function testConnection() {
$this->assertNotEquals(NULL, Yii::app()->db);
}
}
?>