/**
  * @test
  * @group integration
  */
 public function storageUsesInjectedFilemountsToCheckForMountBoundaries()
 {
     $mockedFile = $this->getSimpleFileMock('/mountFolder/file');
     $this->addToMount(array('mountFolder' => array('file' => 'asdfg')));
     $mockedDriver = $this->createDriverMock(array('basePath' => $this->getMountRootUrl()), NULL, NULL);
     $this->initializeVfs();
     $this->prepareFixture(array(), NULL, $mockedDriver);
     $this->fixture->injectFileMount('/mountFolder');
     $this->assertEquals(1, count($this->fixture->getFileMounts()));
     $this->fixture->isWithinFileMountBoundaries($mockedFile);
 }