Browse Source

Remove dead code in test stub.

This code does not work and will trigger notice errors if it was
actually run.
mark_story 11 years ago
parent
commit
66c2b25280
1 changed files with 0 additions and 8 deletions
  1. 0 8
      tests/test_app/TestApp/Controller/Component/AppleComponent.php

+ 0 - 8
tests/test_app/TestApp/Controller/Component/AppleComponent.php

@@ -31,13 +31,6 @@ class AppleComponent extends Component {
 	public $components = array('Orange');
 
 /**
- * testName property
- *
- * @var mixed
- */
-	public $testName = null;
-
-/**
  * startup method
  *
  * @param Event $event
@@ -45,6 +38,5 @@ class AppleComponent extends Component {
  * @return void
  */
 	public function startup(Event $event) {
-		$this->testName = $controller->name;
 	}
 }