Index: test/Common/DelftTools.Utils.Tests/Remoting/RemoteInstanceContainer2Test.cs =================================================================== diff -u -r7dbd47df55680fba1cc239b4a079dfcdd5c10be9 -rd42bae480d1495d40c6299a29fe3018374f25e9c --- test/Common/DelftTools.Utils.Tests/Remoting/RemoteInstanceContainer2Test.cs (.../RemoteInstanceContainer2Test.cs) (revision 7dbd47df55680fba1cc239b4a079dfcdd5c10be9) +++ test/Common/DelftTools.Utils.Tests/Remoting/RemoteInstanceContainer2Test.cs (.../RemoteInstanceContainer2Test.cs) (revision d42bae480d1495d40c6299a29fe3018374f25e9c) @@ -514,7 +514,6 @@ } [Test] - [Ignore] //just for test [Category(TestCategory.WorkInProgress)] public void CrashOnOtherEndIsReceived() { Index: test/DeltaShell/DeltaShell.IntegrationTests/DeltaShell/DeltaShell.Gui/DeltaShellGuiIntegrationTest.cs =================================================================== diff -u -rb9ddbb28cbac3f6693e7a9b35b330ca334c1eaef -rd42bae480d1495d40c6299a29fe3018374f25e9c --- test/DeltaShell/DeltaShell.IntegrationTests/DeltaShell/DeltaShell.Gui/DeltaShellGuiIntegrationTest.cs (.../DeltaShellGuiIntegrationTest.cs) (revision b9ddbb28cbac3f6693e7a9b35b330ca334c1eaef) +++ test/DeltaShell/DeltaShell.IntegrationTests/DeltaShell/DeltaShell.Gui/DeltaShellGuiIntegrationTest.cs (.../DeltaShellGuiIntegrationTest.cs) (revision d42bae480d1495d40c6299a29fe3018374f25e9c) @@ -403,7 +403,6 @@ } [Test] - [Category(TestCategory.WorkInProgress)] public void CreateNewProjectAfterStartWithCommonPluginsShouldBeFast() { DeltaShellApplication.TemporaryProjectSavedAsynchroneously = true; Index: test/DeltaShell/DeltaShell.Plugins.SharpMapGis.Tests/Forms/MapViewTest.cs =================================================================== diff -u -rb9ddbb28cbac3f6693e7a9b35b330ca334c1eaef -rd42bae480d1495d40c6299a29fe3018374f25e9c --- test/DeltaShell/DeltaShell.Plugins.SharpMapGis.Tests/Forms/MapViewTest.cs (.../MapViewTest.cs) (revision b9ddbb28cbac3f6693e7a9b35b330ca334c1eaef) +++ test/DeltaShell/DeltaShell.Plugins.SharpMapGis.Tests/Forms/MapViewTest.cs (.../MapViewTest.cs) (revision d42bae480d1495d40c6299a29fe3018374f25e9c) @@ -112,7 +112,6 @@ } [Test] - [Category(TestCategory.WorkInProgress)] // can't find env variable on build server, in progress ... [TestCase(@"osm\europe_western_europe_netherlands_location.shp", ShapeType.Point)] [TestCase(@"osm\europe_western_europe_netherlands_water.shp", ShapeType.Polygon)] [TestCase(@"osm\europe_western_europe_netherlands_highway.shp", ShapeType.PolyLine)] @@ -162,28 +161,6 @@ mapView.Map.Layers.Add(layer); }); - - // build quad tree from SharpMap -/* - var boxObjects = new List(); - var features = shp.Features; - for (int i = 0; i < features.Count; i++) - { - var feature = (IFeature)features[i]; - boxObjects.Add(new QuadTree.BoxObjects { box = feature.Geometry.EnvelopeInternal, ID = (uint)i }); - } - - Heuristic heur; - heur.maxdepth = (int)Math.Ceiling(0.5 * Math.Log(shp.Features.Count, 2)); - heur.minerror = 10; - heur.tartricnt = 5; - heur.mintricnt = 2; - var quadTree = new QuadTree(boxObjects, 0, heur); - - AddSharpMapQuadTreeFeatures(quadTree, mapView.Map); -*/ - - }, layer); mapView.Dispose();