PATH:
home
/
letacommog
/
letaweb
/
framework
/
cli
/
views
/
shell
/
crud
<?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'); } }
[+]
..
[-] _search.php
[edit]
[-] test.php
[edit]
[-] _form.php
[edit]
[-] create.php
[edit]
[-] view.php
[edit]
[-] index.php
[edit]
[-] update.php
[edit]
[-] admin.php
[edit]
[-] controller.php
[edit]
[-] _view.php
[edit]