We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d40852 commit 4a4eda9Copy full SHA for 4a4eda9
src/Symfony/Component/Console/Tests/Command/CommandTest.php
@@ -167,15 +167,6 @@ public function testGetHelper()
167
$this->assertEquals($formatterHelper->getName(), $command->getHelper('formatter')->getName(), '->getHelper() returns the correct helper');
168
}
169
170
- public function testGet()
171
- {
172
- $application = new Application();
173
- $command = new \TestCommand();
174
- $command->setApplication($application);
175
- $formatterHelper = new FormatterHelper();
176
- $this->assertEquals($formatterHelper->getName(), $command->getHelper('formatter')->getName(), '->__get() returns the correct helper');
177
- }
178
-
179
public function testMergeApplicationDefinition()
180
{
181
$application1 = new Application();
0 commit comments