test.php 430 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * This is the template for generating the unit test for a model class.
  4. * The following variables are available in this template:
  5. * - $className: the class name
  6. * - $fixtureName: the fixture name
  7. */
  8. ?>
  9. <?php echo "<?php\n"; ?>
  10. class <?php echo $className; ?>Test extends CDbTestCase
  11. {
  12. public $fixtures=array(
  13. '<?php echo $fixtureName; ?>'=>'<?php echo $className; ?>',
  14. );
  15. public function testCreate()
  16. {
  17. }
  18. }