public function testListServiceProviderRegion()
 {
     // Provider with regions
     $regions = $this->_enumeratedMapper->listServiceProviderRegion(self::PROVIDER_COMMERCIAL_ORG_ID);
     $this->assertNotNull($regions);
     $this->assertEquals(3, count($regions));
     // Provider withour regions
     $regions = $this->_enumeratedMapper->listServiceProviderRegion(self::INEXISTENT_ORG_ID);
     $this->assertNotNull($regions);
     $this->assertEquals(0, count($regions));
 }