示例#1
0
 /**
  * @expectedException \OCP\Files\NotFoundException
  */
 public function testGetNoStorages()
 {
     $manager = new Manager();
     /**
      * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view
      */
     $view = $this->getMock('\\OC\\Files\\View');
     $root = new \OC\Files\Node\Root($manager, $view, $this->user);
     $root->get('/bar/foo');
 }