Incam_IntranetNueva/www/protected/tests/unit/DbTest.php

12 lines
157 B
PHP
Raw Permalink Normal View History

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