Esempio n. 1
0
 public function testRenderLine()
 {
     $this->output->expects($this->once())->method('writeLn')->will($this->returnValue('string'));
     $object = new ConsoleRender($this->output);
     $this->assertEquals(null, $object->renderLine('string'));
 }