/**
  * Test for non existing file
  *
  * @return void
  */
 public function testForNonExistingFile()
 {
     $file = new FileReader('./path/for/no/file.txt');
     // looking at the return value of a constructor is curious
     // but the constructor returns a value
     $this->assertFalse($file->__construct('./path/for/no/file.txt'));
 }