Index: test/Common/NetTopologySuite.Extensions.Tests/TestObjects/TestFeature.cs =================================================================== diff -u -r0153333b695581ca406c286a27467bc30d7aa5f8 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/Common/NetTopologySuite.Extensions.Tests/TestObjects/TestFeature.cs (.../TestFeature.cs) (revision 0153333b695581ca406c286a27467bc30d7aa5f8) +++ test/Common/NetTopologySuite.Extensions.Tests/TestObjects/TestFeature.cs (.../TestFeature.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -6,27 +6,24 @@ namespace NetTopologySuite.Extensions.Tests.TestObjects { //Just a subclass - class TestFeatureSubClass : TestFeature - { + internal class TestFeatureSubClass : TestFeature {} - } - - class TestFeature : IFeature + internal class TestFeature : IFeature { [FeatureAttribute(Order = 2)] public string Name { get; set; } [DisplayName("Kees")] [FeatureAttribute(Order = 1, ExportName = "Piet")] public string Other { get; set; } - - public object Clone() - { - throw new NotImplementedException(); - } public IGeometry Geometry { get; set; } public IFeatureAttributeCollection Attributes { get; set; } + + public object Clone() + { + throw new NotImplementedException(); + } } -} +} \ No newline at end of file