mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
Merge pull request #415 from scottharwell/bake-test-plurals
Bake test plurals
This commit is contained in:
commit
c718b102a9
1 changed files with 2 additions and 3 deletions
|
@ -86,13 +86,12 @@ class <?php echo $fullClassName; ?>TestCase extends CakeTestCase {
|
||||||
|
|
||||||
<?php foreach ($methods as $method): ?>
|
<?php foreach ($methods as $method): ?>
|
||||||
/**
|
/**
|
||||||
* test<?php echo Inflector::classify($method); ?> method
|
* test<?php echo Inflector::camelize($method); ?> method
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function test<?php echo Inflector::classify($method); ?>() {
|
public function test<?php echo Inflector::camelize($method); ?>() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
<?php endforeach;?>
|
<?php endforeach;?>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue