Example #1
0
 /**
  * @group utilities
  * @test
  */
 public function an_existing_readable_file_can_be_loaded()
 {
     $contents = File::getFileContents(__DIR__ . '/File/can_be_loaded.txt');
     $this->assertEquals("Yes we can!\n", $contents, 'The contents of the loaded file differ from what was expected');
 }