summaryrefslogtreecommitdiff
path: root/framework/cli/views/shell/model/test.php
blob: 93aa17e814cba7725e992a903678c94be671dbc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * This is the template for generating the unit test for a model class.
 * The following variables are available in this template:
 * - $className: the class name
 * - $fixtureName: the fixture name
 */
?>
<?php echo "<?php\n"; ?>

class <?php echo $className; ?>Test extends CDbTestCase
{
	public $fixtures=array(
		'<?php echo $fixtureName; ?>'=>'<?php echo $className; ?>',
	);

	public function testCreate()
	{

	}
}