Updating group test case, and fixing test case classname.

This commit is contained in:
mark_story 2011-01-03 12:58:49 -05:00
parent 2e9d9479a6
commit 5ae194ec90
2 changed files with 2 additions and 1 deletions

View file

@ -37,6 +37,7 @@ class AllComponentsTest extends PHPUnit_Framework_TestSuite {
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component.test.php'); $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component_collection.test.php'); $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component_collection.test.php');
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'components'); $suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'components');
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'components' . DS . 'auth');
return $suite; return $suite;
} }
} }

View file

@ -6,7 +6,7 @@ App::import('Component', 'Acl');
App::import('Core', 'CakeRequest'); App::import('Core', 'CakeRequest');
App::import('Core', 'Controller'); App::import('Core', 'Controller');
class ActionsAuthorizeTest extends CakeTestCase { class CrudAuthorizeTest extends CakeTestCase {
/** /**
* setup * setup