public function thenTheOutputShouldBe($string) { $this->spec->assertSame($string, implode(PHP_EOL, $this->writer->getOutput())); }
private function thenTheLogShouldBe($messages) { $count = count($messages); $this->assertEquals($messages, array_slice($this->writer->getOutput(), -$count, $count)); }