Skip to content

Commit

Permalink
rename the model test such that is coincides with the file it's testing
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six committed May 28, 2011
1 parent ca59ea3 commit dcf14a7
Showing 1 changed file with 4 additions and 4 deletions.
@@ -1,6 +1,6 @@
<?php
/**
* AllModelTest file
* ModelTest file
*
* PHP 5
*
Expand All @@ -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.
Expand All @@ -40,4 +40,4 @@ public static function suite() {
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelIntegrationTest.php');
return $suite;
}
}
}

0 comments on commit dcf14a7

Please sign in to comment.