[Console] Delete duplicate test in CommandTest

There is no __get method in the Command class, and the deleted test was duplicated with the preceding one.
This commit is contained in:
Arnaud Kleinpeter 2015-05-18 19:58:47 +02:00
parent 4d40852596
commit 4a4eda93c8
1 changed files with 0 additions and 9 deletions

View File

@ -167,15 +167,6 @@ class CommandTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($formatterHelper->getName(), $command->getHelper('formatter')->getName(), '->getHelper() returns the correct helper');
}
public function testGet()
{
$application = new Application();
$command = new \TestCommand();
$command->setApplication($application);
$formatterHelper = new FormatterHelper();
$this->assertEquals($formatterHelper->getName(), $command->getHelper('formatter')->getName(), '->__get() returns the correct helper');
}
public function testMergeApplicationDefinition()
{
$application1 = new Application();