Example #1
0
 /**
  * @test
  */
 public function eventShouldInitializeCorrectly()
 {
     $file = $this->getMockedFile();
     $event = new FileEvent($file);
     $file2 = $event->getFile();
     $this->assertSame($file, $file2);
     $file3 = $event->getIdentifiable();
     $this->assertSame($file, $file3);
 }