public function close() { $this->stream->close(); }
public function testClose() { $stream = $this->getMock('Webmozart\\Console\\Api\\IO\\OutputStream'); $stream->expects($this->once())->method('close'); $this->output->setStream($stream); $this->output->close(); }