コード例 #1
0
ファイル: CliApplicationFixture.php プロジェクト: watoki/cli
 public function thenTheOutputShouldBe($string)
 {
     $this->spec->assertSame($string, implode(PHP_EOL, $this->writer->getOutput()));
 }
コード例 #2
0
ファイル: StepperCommandTest.php プロジェクト: watoki/stepper
 private function thenTheLogShouldBe($messages)
 {
     $count = count($messages);
     $this->assertEquals($messages, array_slice($this->writer->getOutput(), -$count, $count));
 }