Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/IntersectionOnShapesTest.cs =================================================================== diff -u -r4813 -r6272 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/IntersectionOnShapesTest.cs (.../IntersectionOnShapesTest.cs) (revision 4813) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/IntersectionOnShapesTest.cs (.../IntersectionOnShapesTest.cs) (revision 6272) @@ -52,7 +52,6 @@ [Test] [Category("Slow")] - [Ignore("Takes 25 minutes on buildserver")] public void AllIntersectionsWithPolderLevel() { string crossSectionFile = Path.Combine(Directory.GetCurrentDirectory(), @"TestData\HHNKShapeFiles\Crosssection.shp"); @@ -106,9 +105,12 @@ DateTime finish = DateTime.Now; TimeSpan duration = finish - start; - Assert.That(crossSectionFeatureSet.Features.Count, Is.EqualTo(expectedNumberOfSourceSections)); - Assert.That(trafficLoadFeatureSet.Features.Count, Is.EqualTo(expectedNumberOfTargets)); - Assert.That(intersections, Is.EqualTo(expectedIntersections)); + Assert.Multiple(() => + { + Assert.That(crossSectionFeatureSet.Features, Has.Count.EqualTo(expectedNumberOfSourceSections)); + Assert.That(trafficLoadFeatureSet.Features, Has.Count.EqualTo(expectedNumberOfTargets)); + Assert.That(intersections, Is.EqualTo(expectedIntersections)); + }); Debug.WriteLine("Seconds: " + duration.TotalSeconds); Debug.WriteLine("Seconds per intersection: " + duration.TotalSeconds / (trafficLoadFeatureSet.Features.Count * crossSectionFeatureSet.Features.Count)); }