Example #1
0
 public function testGetLines()
 {
     $path = '/tmp/juriya_test.txt';
     $lines = File::getLines($path);
     $this->assertCount(2, $lines);
     $this->assertEquals('This is a test' . "\n", current($lines));
     $this->assertEquals('For file class', end($lines));
 }