rename the model test such that is coincides with the file it's testing

This commit is contained in:
AD7six 2011-05-29 01:22:38 +02:00
parent ca59ea3dd5
commit dcf14a7a44

View file

@ -1,6 +1,6 @@
<?php
/**
* AllModelTest file
* ModelTest file
*
* PHP 5
*
@ -18,13 +18,13 @@
*/
/**
* AllModelTest class
* ModelTest class
*
* This test group will run model class tests
*
* @package cake.tests.groups
*/
class AllModelTest extends PHPUnit_Framework_TestSuite {
class ModelTest extends PHPUnit_Framework_TestSuite {
/**
* suite method, defines tests for this suite.
@ -40,4 +40,4 @@ class AllModelTest extends PHPUnit_Framework_TestSuite {
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelIntegrationTest.php');
return $suite;
}
}
}