/**
  * @expectedException \Puli\Manager\Api\Asset\NoSuchAssetMappingException
  */
 public function testGetRootAssetMappingFailsIfNotFound()
 {
     $uuid = Uuid::uuid4();
     $this->discoveryManager->expects($this->at(0))->method('findRootBindings')->with($this->uuid($uuid))->willReturn(array());
     $this->manager->getRootAssetMapping($uuid);
 }