public void GetFeatureShouldWorkForShapeFileWithoutObjectID() { string path = @"..\..\..\..\data\gemeenten.shp"; var s = new ShapeFile(path); var feature = s.Features[0]; Assert.LessOrEqual(0, s.IndexOf((IFeature)feature)); }
public void GetFeatureShouldWorkForShapeFile() { string path = @"..\..\..\..\data\Europe_Lakes.shp"; var s = new ShapeFile(path); var feature = s.Features[1]; Assert.LessOrEqual(0, s.IndexOf((IFeature)feature)); }