summaryrefslogtreecommitdiff
path: root/framework/cli/views/shell/crud/test.php
blob: fbb1fd9bc0176df0976915842afa5d24ac9323b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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');
	}
}