mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
rename the model test such that is coincides with the file it's testing
This commit is contained in:
parent
ca59ea3dd5
commit
dcf14a7a44
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue