Browse Source

test added for VersionCommand

1.0
Claudio Zizza 10 years ago
parent
commit
17907235ac
  1. 44
      tests/MageTest/Command/BuildIn/VersionCommandTest.php

44
tests/MageTest/Command/BuildIn/VersionCommandTest.php

@ -0,0 +1,44 @@
<?php
namespace MageTest\Command\BuildIn;
use Mage\Command\BuiltIn\VersionCommand;
use Mage\Console;
use PHPUnit_Framework_TestCase;
/**
* @group Mage_Command_BuildIn_VersionCommand
*/
class VersionCommandTest extends PHPUnit_Framework_TestCase
{
public function testRun()
{
define('MAGALLANES_VERSION', '1');
$this->workAroundStatic();
$command = new VersionCommand();
$command->run();
$this->expectOutputString('Running Magallanes version ' . MAGALLANES_VERSION . str_repeat(PHP_EOL, 2));
}
/**
* This is only needed as long as Console-class has static methods and properties
*/
private function workAroundStatic()
{
$refClass = new \ReflectionClass('Mage\Console');
$refProperty = $refClass->getProperty('logEnabled');
$refProperty->setAccessible(true);
$refProperty->setValue(false);
$config = $this->getMock('Mage\Config');
$config->expects($this->once())
->method('getParameter')
->will($this->returnValue(true));
$refProperty = $refClass->getProperty('config');
$refProperty->setAccessible(true);
$refProperty->setValue($config);
}
}
Loading…
Cancel
Save