Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/IllustrationPointsChartControlTest.cs =================================================================== diff -u -r65a84aed979055e2b6930528f392b2cac5f4405b -r3748f21da69e2c5a0f5d59168ed1d00807bedf00 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/IllustrationPointsChartControlTest.cs (.../IllustrationPointsChartControlTest.cs) (revision 65a84aed979055e2b6930528f392b2cac5f4405b) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/IllustrationPointsChartControlTest.cs (.../IllustrationPointsChartControlTest.cs) (revision 3748f21da69e2c5a0f5d59168ed1d00807bedf00) @@ -19,6 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System.Drawing; using System.Linq; using System.Windows.Forms; using Core.Common.TestUtil; @@ -75,20 +76,23 @@ 0.19, 0.19 }, rows[0].Values, new DoubleWithToleranceComparer(1e-6)); + Assert.IsNull(rows[0].Color); Assert.AreEqual("Stochast 2", rows[1].Name); CollectionAssert.AreEqual(new[] { 0.19, 0.81, 0.81 }, rows[1].Values, new DoubleWithToleranceComparer(1e-6)); + Assert.IsNull(rows[1].Color); Assert.AreEqual("Overig", rows[2].Name); CollectionAssert.AreEqual(new[] { 0.0002, 0.0008, 0.0018 }, rows[2].Values, new DoubleWithToleranceComparer(1e-6)); + Assert.AreEqual(Color.Gray, rows[2].Color); } private static GeneralResult GetGerenalResult()