Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps.Tests/Services/ShapeFileReaderTest.cs =================================================================== diff -u -r4813 -r5405 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps.Tests/Services/ShapeFileReaderTest.cs (.../ShapeFileReaderTest.cs) (revision 4813) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps.Tests/Services/ShapeFileReaderTest.cs (.../ShapeFileReaderTest.cs) (revision 5405) @@ -53,8 +53,8 @@ } } - [Test , Ignore("Attributes are read always")] - public void ReadShapeFile_IgnoringAttributeData_MaterializedFeatures() + [Test] + public void ReadShapeFile_IgnoringAttributeData_DoesNotPreventReadingAttributesOfGeom() { reader.IgnoreAttributeData = true; IEnumerable geoms = reader.Read(); @@ -65,12 +65,12 @@ Assert.That(geom.Geometry, Is.Not.Null); Assert.That(geom.WktFormat, Is.Not.Null); Assert.That(geom.Attributes, Is.Not.Null); - Assert.That(geom.Attributes.Count, Is.EqualTo(0)); + Assert.That(geom.Attributes.Count, Is.EqualTo(36)); } } - [Test, Ignore("Attributes are read always")] - public void ReadShapeFile_DutchCulture_MaterializedFeatures() + [Test] + public void ReadShapeFile_DutchCulture_DoesNotPreventReadingAttributesOfGeom() { Action action = () => @@ -84,7 +84,7 @@ Assert.That(geom.Geometry, Is.Not.Null); Assert.That(geom.WktFormat, Is.Not.Null); Assert.That(geom.Attributes, Is.Not.Null); - Assert.That(geom.Attributes.Count, Is.EqualTo(0)); + Assert.That(geom.Attributes.Count, Is.EqualTo(36)); } };