class Test extends WebTestCase { public $fixtures=array( ''=>'', ); public function testShow() { $this->open('?r=/view&id=1'); } public function testCreate() { $this->open('?r=/create'); } public function testUpdate() { $this->open('?r=/update&id=1'); } public function testDelete() { $this->open('?r=/view&id=1'); } public function testList() { $this->open('?r=/index'); } public function testAdmin() { $this->open('?r=/admin'); } }