diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
| commit | 341cc4dd9c53ffbfb863e026dd58549c1082c7a7 (patch) | |
| tree | 1bbbed20313bafb9b063b6b4d894fe580d8b000f /framework/cli/views/shell/crud/test.php | |
Diffstat (limited to 'framework/cli/views/shell/crud/test.php')
| -rw-r--r-- | framework/cli/views/shell/crud/test.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/framework/cli/views/shell/crud/test.php b/framework/cli/views/shell/crud/test.php new file mode 100644 index 0000000..fbb1fd9 --- /dev/null +++ b/framework/cli/views/shell/crud/test.php @@ -0,0 +1,47 @@ +<?php +/** + * This is the template for generating the functional test for controller. + * The following variables are available in this template: + * - $controllerID: the controller ID + * - $fixtureName: the fixture name + * - $modelClass: the model class name + */ +?> +<?php echo "<?php\n"; ?> + +class <?php echo $modelClass; ?>Test extends WebTestCase +{ + public $fixtures=array( + '<?php echo $fixtureName; ?>'=>'<?php echo $modelClass; ?>', + ); + + public function testShow() + { + $this->open('?r=<?php echo $controllerID; ?>/view&id=1'); + } + + public function testCreate() + { + $this->open('?r=<?php echo $controllerID; ?>/create'); + } + + public function testUpdate() + { + $this->open('?r=<?php echo $controllerID; ?>/update&id=1'); + } + + public function testDelete() + { + $this->open('?r=<?php echo $controllerID; ?>/view&id=1'); + } + + public function testList() + { + $this->open('?r=<?php echo $controllerID; ?>/index'); + } + + public function testAdmin() + { + $this->open('?r=<?php echo $controllerID; ?>/admin'); + } +} |
