Exemplo n.º 1
0
 public function writeMoreToANewLine($newContent)
 {
     $this->file->writeMore($newContent . "\n");
     $this->refreshAllLinesTextFileClassVariables();
     return $this;
 }
Exemplo n.º 2
0
 public function testWriteMore()
 {
     $this->file->writeMore("umz");
     $this->assertEquals(implode("\n", $this->data) . "umz\n", $this->file->content());
 }