Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs =================================================================== diff -u -r4476 -r4540 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 4476) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 4540) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2023. All rights reserved. +// Copyright (C) Stichting Deltares 2024. All rights reserved. // // This file is part of the Dam Engine. // @@ -54,12 +54,12 @@ int errorCount = GeneralHelper.DetermineNumberOfCalculationErrors(engineInterface.DamProjectData.CalculationMessages); Assert.AreEqual(0, errorCount, "There should be nor errors during the calculation."); } - + [Test, Ignore("This test is only used for debugging XML files generated by Dam UI")] - [TestCase(1,"InputFileOnnoBligh.xml")] - [TestCase(1,"InputFileOnnoWbiSellmeijer.xml")] - [TestCase(8,"InputFileOnnoBligh.xml")] - [TestCase(8,"InputFileOnnoWbiSellmeijer.xml")] + [TestCase(1, "InputFileOnnoBligh.xml")] + [TestCase(1, "InputFileOnnoWbiSellmeijer.xml")] + [TestCase(8, "InputFileOnnoBligh.xml")] + [TestCase(8, "InputFileOnnoWbiSellmeijer.xml")] public void DebugProblemOnno(int maxCores, string fileName) { string fullInputFilename = Path.Combine(mapTestFiles, fileName); @@ -68,7 +68,7 @@ string outputName = fileName + maxCores + ".xml"; var engineInterface = new EngineInterface(inputString); GeneralHelper.RunAfterInputValidation(engineInterface, true, outputName); - + int errorCount = GeneralHelper.DetermineNumberOfCalculationErrors(engineInterface.DamProjectData.CalculationMessages); Assert.AreEqual(0, errorCount, "There should be nor errors during the calculation."); }