redirectUrl = $url; } } class UsersControllerTestCase extends CakeTestCase { var $fixtures = array('app.user', 'app.translation', 'app.identifier', 'app.translation_file', 'app.language', 'app.vote'); function startTest() { $this->Users =& new TestUsersController(); $this->Users->constructClasses(); } function endTest() { unset($this->Users); ClassRegistry::flush(); } function testIndex() { } function testView() { } function testAdd() { } function testEdit() { } function testDelete() { } function testAdminIndex() { } function testAdminView() { } function testAdminAdd() { } function testAdminEdit() { } function testAdminDelete() { } }