From 33dc57e667390ff7bfb37cd2c7b3cbcc25216a3c Mon Sep 17 00:00:00 2001 From: Scott Harwell Date: Mon, 16 Jan 2012 14:45:12 -0500 Subject: [PATCH] Added check for duplicate methods to prevent fatal php error --- lib/Cake/Console/Templates/default/classes/test.ctp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Console/Templates/default/classes/test.ctp b/lib/Cake/Console/Templates/default/classes/test.ctp index 7434963d1..4cc91cc67 100644 --- a/lib/Cake/Console/Templates/default/classes/test.ctp +++ b/lib/Cake/Console/Templates/default/classes/test.ctp @@ -84,15 +84,21 @@ class TestCase extends CakeTestCase { parent::tearDown(); } + + /** - * test method + * test method * * @return void */ - public function test() { + public function test() { } - + }