/**
  * @covers WindowsAzure\ServiceRuntime\Internal\LocalResource::getRootPath
  */
 public function testGetRootPath()
 {
     // Setup
     $locaResource = new LocalResource(1, 'local', 'path');
     // Test
     $this->assertEquals('path', $locaResource->getRootPath());
 }