listLocations() public method

public listLocations ( $nodeLocationId = null )
 public function testListLocationsWithId()
 {
     $expectedId = 'HKG';
     $images = $this->provider->listLocations($expectedId);
     $this->assertCount(1, $images, 'listLocations returns an array with exactly one item');
     $this->assertSame($expectedId, $images[0]->getId(), 'The NodeLocation ID matches the ID that was requested');
 }