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;
class AbstractCommandTest extends \PHPUnit_Framework_TestCase
{
* @test
* @expectedException \InvalidArgumentException
public function propertyDoesNotExist()
$abstractCommand = $this->getMockForAbstractClass('\\Siad007\\VersionControl\\HG\Command\\AbstractCommand');
$abstractCommand->getTest();
}
public function propertyExist()
$this->assertFalse($abstractCommand->getVersion());
public function wrongMethodPrefix()
$abstractCommand->testVersion();
public function hgPath()
$abstractCommand->setHgPath('/test/path/to/hg');
$this->assertSame('/test/path/to/hg', $abstractCommand->getHgPath());