1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * EMongoDbTestCase
- *
- * base class for unit testing
- *
- * @author Philippe Gaultier <pgaultier@ibitux.com>
- * @copyright 2010-2011 Ibitux
- * @license http://www.yiiframework.com/license/ BSD license
- * @category tests
- * @package ext.YiiMongoDbSuite.tests
- * @since v1.3.6
- */
- Yii::import('system.test.CDbTestCase');
- /**
- * EMongoDbTestCase extends base CDbTestCase.
- *
- * Right now, EMongDbTestCase is identical to CDbTestCase.
- *
- * @author Philippe Gaultier <pgaultier@ibitux.com>
- * @copyright 2010-2011 Ibitux
- * @license http://www.yiiframework.com/license/ BSD license
- * @category tests
- * @package ext.YiiMongoDbSuite.tests
- * @since v1.3.6
- */
- abstract class EMongoDbTestCase extends CDbTestCase
- {
- }
|