public void RemoveAtTest()
 {
     IFeature feature = new Feature();
     FeatureCollection target = new FeatureCollection(new Collection<IFeature> { feature }); 
     const int index = 0;
     target.RemoveAt(index);
     Assert.AreEqual(0, target.Count);
 }