示例#1
0
 /**
  * @test
  */
 public function commandPathIsGit()
 {
     $object = new GitCommand();
     $expected = 'git';
     $this->assertEquals($expected, $object->getCommandPath());
 }
 /**
  * @test
  */
 public function shouldBeGitCommand()
 {
     $object = new GitCommand();
     $expected = 'git';
     $this->assertSame($expected, $object->getCommandPath());
 }