public void GeographyMarkupConverterToMarkupWithReferenceTest()
 {
     for (Int32 index = 0; index < this.geometries.Length; index++)
     {
         String actual = GeographyMarkupConverter.ToMarkup(this.geometriesWithReference[index]);
         actual.ShouldBe(this.geometriesMarkupWithReference[index]);
     }
 }
 public void GeographyMarkupConverterToMarkupWithIdentifierTest()
 {
     for (Int32 index = 0; index < this.geometries.Length; index++)
     {
         String actual = GeographyMarkupConverter.ToMarkup(this.geometries[index], this.identifier);
         actual.ShouldBe(this.geometriesMarkupWithIdentifier[index]);
     }
 }