Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs =================================================================== diff -u -r5368 -r5369 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 5368) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 5369) @@ -22,7 +22,6 @@ using System.Globalization; using System.IO; using System.Threading; -using Deltares.DamEngine.Data.GeometryExport; using Deltares.DamEngine.Interface; using Deltares.DamEngine.TestHelpers; using NUnit.Framework; @@ -40,21 +39,15 @@ /// 2) Copy the file to src\Deltares.DamEngine.IntegrationTests\TestFiles\InputForDebugging.xml /// 3) Run the test in Debugging mode /// - [Test]//, Ignore("This test is only used for debugging XML files generated by Dam UI")] + [Test, Ignore("This test is only used for debugging XML files generated by Dam UI")] public void DebugWithXmlInputFile() { const string inputFilename = "InputForDebugging.xml"; - // const string visualizationFolder = @"D:\src\dam\DamTools\GeometryVisualizer\"; //#Tom string fullInputFilename = Path.Combine(mapTestFiles, inputFilename); Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; string inputString = File.ReadAllText(fullInputFilename); var outputName = "OutputForDebugging.xml"; var engineInterface = new EngineInterface(inputString); - var geometry = engineInterface.DamProjectData.Dike.Locations[0].Segment.SoilProfileProbabilities[0].SoilProfile2D.Geometry; - // Use the following code to export the geometry to a file - // GeometryExporter.ExportToFile(geometry, visualizationFolder + "Geometry.txt"); - // GeometryExporter.ExportToJsonFile(geometry, visualizationFolder + "Geometry.json"); - GeneralHelper.RunAfterInputValidation(engineInterface, true, outputName); int errorCount = GeneralHelper.DetermineNumberOfCalculationErrors(engineInterface.DamProjectData.CalculationMessages); Assert.That(errorCount, Is.EqualTo(0), "There should be nor errors during the calculation.");