EMongoDbTestCase.php 733 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * EMongoDbTestCase
  4. *
  5. * base class for unit testing
  6. *
  7. * @author Philippe Gaultier <pgaultier@ibitux.com>
  8. * @copyright 2010-2011 Ibitux
  9. * @license http://www.yiiframework.com/license/ BSD license
  10. * @category tests
  11. * @package ext.YiiMongoDbSuite.tests
  12. * @since v1.3.6
  13. */
  14. Yii::import('system.test.CDbTestCase');
  15. /**
  16. * EMongoDbTestCase extends base CDbTestCase.
  17. *
  18. * Right now, EMongDbTestCase is identical to CDbTestCase.
  19. *
  20. * @author Philippe Gaultier <pgaultier@ibitux.com>
  21. * @copyright 2010-2011 Ibitux
  22. * @license http://www.yiiframework.com/license/ BSD license
  23. * @category tests
  24. * @package ext.YiiMongoDbSuite.tests
  25. * @since v1.3.6
  26. */
  27. abstract class EMongoDbTestCase extends CDbTestCase
  28. {
  29. }