test.php 331 B

1234567891011121314151617
  1. <?php
  2. return CMap::mergeArray(
  3. require(dirname(__FILE__).'/main.php'),
  4. array(
  5. 'components'=>array(
  6. 'fixture'=>array(
  7. 'class'=>'system.test.CDbFixtureManager',
  8. ),
  9. /* uncomment the following to provide test database connection
  10. 'db'=>array(
  11. 'connectionString'=>'DSN for test database',
  12. ),
  13. */
  14. ),
  15. )
  16. );