public function testWriteLineRawDoesNotFormatText()
{
$formatter = $this->getMock('Webmozart\\Console\\Api\\Formatter\\Formatter');
$formatter->expects($this->never())->method('format');
$this->output->setFormatter($formatter);
$this->output->writeLineRaw('<tag>text</tag>');
$this->assertSame('<tag>text</tag>' . PHP_EOL, $this->stream->fetch());
}