Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastValidatorTest.cs =================================================================== diff -u -r92f0a266f3ee297a3e0332e9a36fc3ec70d47b59 -r831379390ac72116a2f1c3a014063bbd60ab928d --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastValidatorTest.cs (.../StochastValidatorTest.cs) (revision 92f0a266f3ee297a3e0332e9a36fc3ec70d47b59) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastValidatorTest.cs (.../StochastValidatorTest.cs) (revision 831379390ac72116a2f1c3a014063bbd60ab928d) @@ -21,7 +21,6 @@ using System; using System.Collections.Generic; -using System.Linq; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Common.Data.IllustrationPoints; @@ -43,32 +42,6 @@ } [Test] - public void ValidateStochasts_StochastsEmpty_DoesNotThrow() - { - // Call - TestDelegate test = () => StochastValidator.ValidateStochasts(Enumerable.Empty()); - - // Assert - Assert.DoesNotThrow(test); - } - - [Test] - public void ValidateStochasts_SingleStochast_DoesNotThrow() - { - // Setup - var stochasts = new List - { - new Stochast("Stochast A", 1, 2) - }; - - // Call - TestDelegate test = () => StochastValidator.ValidateStochasts(stochasts); - - // Assert - Assert.DoesNotThrow(test); - } - - [Test] public void ValidateStochasts_UniqueStochasts_DoesNotThrow() { // Setup