Beispiel #1
0
 /**
  * @covers ::show
  * @depends testDumpingStatus
  */
 public function testShowing()
 {
     $this->assertContains('author', self::$git->show('master'));
     $this->assertContains('committer', self::$git->output());
     $this->assertContains('Initial commit.', self::$git->output());
     $this->assertContains('Giovanni Gioffreda', self::$git->output());
 }