Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs =================================================================== diff -u -rd71b7ff94e33c33d3d8a7b38eee416c9df03f06a -r27b56bdb2dc8ec9e4810889b2b57ff394c34ccfe --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs (.../IllustrationPointNodeConverterTest.cs) (revision d71b7ff94e33c33d3d8a7b38eee416c9df03f06a) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs (.../IllustrationPointNodeConverterTest.cs) (revision 27b56bdb2dc8ec9e4810889b2b57ff394c34ccfe) @@ -21,7 +21,6 @@ using System; using System.Linq; -using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Common.Data.IllustrationPoints; using Ringtoets.Common.Service.IllustrationPoints; @@ -56,7 +55,7 @@ { // Setup var hydraRingStochast = new HydraRingStochast("stochast", 1, 2); - var hydraRingFaultTreeIllustrationPoint = new HydraRingFaultTreeIllustrationPoint("point", 3, new [] + var hydraRingFaultTreeIllustrationPoint = new HydraRingFaultTreeIllustrationPoint("point", 3, new[] { hydraRingStochast }, HydraRingCombinationType.And); @@ -71,7 +70,7 @@ Assert.AreEqual(hydraRingFaultTreeIllustrationPoint.Name, faultTreeIllustrationPointTreeNodeData.Name); Assert.AreEqual(hydraRingFaultTreeIllustrationPoint.Beta, faultTreeIllustrationPointTreeNodeData.Beta); - Assert.AreEqual((int) hydraRingFaultTreeIllustrationPoint.CombinationType, (int) faultTreeIllustrationPointTreeNodeData.CombinationType); + Assert.AreEqual(CombinationType.And, faultTreeIllustrationPointTreeNodeData.CombinationType); Assert.AreEqual(hydraRingFaultTreeIllustrationPoint.Stochasts.Count(), faultTreeIllustrationPointTreeNodeData.Stochasts.Count()); Stochast stochast = faultTreeIllustrationPointTreeNodeData.Stochasts.First();