Fixing content type ordering when content_type is not defined.
[akelos.git] / lib / utils / generators / scaffold / templates / model_unit_test.tpl
blob0298ceccd4a31b1e2ed6d6acd947f5f356276f3d
1 <?php  echo '<?php'?>
3 // To run this test calling ./script/test unit/app/models/<?php  echo AkInflector::underscore($model_name); ?>
4 // More about testing at http://wiki.akelos.org/testing-guide
6 class <?php  echo $model_name?>TestCase extends AkUnitTest
8     function test_setup()
9     {
10         $this->installAndIncludeModels('<?php  echo $model_name?>');
11     }
12     
13     function test_<?php  echo $model_name?>()
14     {
15         $this->assertTrue(false,'Unit test for <?php  echo $model_name?> not implemented');
16     }