for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* VersionControl_HG
* Simple OO implementation for Mercurial.
*
* PHP Version 5.4
* @copyright 2014 Siad Ardroumli
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://siad007.github.io/versioncontrol_hg
*/
namespace Siad007\VersionControl\HG\Tests\Command;
use Siad007\VersionControl\HG\Factory;
class TagCommandTest extends \PHPUnit_Framework_TestCase
{
* @test
public function tagCommand()
$tagCmd = Factory::createTag();
$tagCmd->addName('rev');
$tagCmd->addName('rev2');
$tagCmd->setForce(true);
$tagCmd->setLocal(true);
$tagCmd->setRev('test');
$tagCmd->setRemove(true);
$tagCmd->setEdit(true);
$tagCmd->setMessage('text');
$tagCmd->setDate('date');
$tagCmd->setUser('user');
$name = 'rev rev2';
$expected = 'hg tag --force --local --rev ' . escapeshellarg('test') . ' --remove --edit --message ' . escapeshellarg('text') . ' --date ' . escapeshellarg('date') . ' --user ' . escapeshellarg('user') . ' ';
$this->assertSame($name, implode(' ', $tagCmd->getName()));
$this->assertSame($expected . $name, $tagCmd->asString());
}