Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsViewHelperTest.cs =================================================================== diff -u -r766487194eab00bc9205f5cd29f269c9af5f2ab8 -r164556e75ddc489940c96a84fd41589a4acbac80 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsViewHelperTest.cs (.../GrassCoverErosionInwardsViewHelperTest.cs) (revision 766487194eab00bc9205f5cd29f269c9af5f2ab8) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsViewHelperTest.cs (.../GrassCoverErosionInwardsViewHelperTest.cs) (revision 164556e75ddc489940c96a84fd41589a4acbac80) @@ -61,7 +61,7 @@ public void CollectCalculationsPerSegment_NullParameters_EmptyDictionary() { // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(null, null); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(null, null); // Assert Assert.AreEqual(0, collectCalculationsPerSegment.Count); @@ -74,7 +74,7 @@ var calculations = new GrassCoverErosionInwardsCalculation[0]; // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(null, calculations); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(null, calculations); // Assert Assert.AreEqual(0, collectCalculationsPerSegment.Count); @@ -84,7 +84,7 @@ public void CollectCalculationsPerSegment_SecondParameterNull_EmptyDictionary() { // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(oneSectionResult, null); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(oneSectionResult, null); // Assert Assert.AreEqual(0, collectCalculationsPerSegment.Count); @@ -97,7 +97,7 @@ var calculations = new GrassCoverErosionInwardsCalculation[0]; // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(oneSectionResult, calculations); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(oneSectionResult, calculations); // Assert Assert.AreEqual(0, collectCalculationsPerSegment.Count); @@ -126,7 +126,7 @@ }; // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(twoSectionResults, calculations); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(twoSectionResults, calculations); // Assert Assert.AreEqual(1, collectCalculationsPerSegment.Count); @@ -157,7 +157,7 @@ }; // Call - var collectCalculationsPerSegment = GrassCoverErosionInwardsViewHelper.CollectCalculationsPerSegment(twoSectionResults, calculations); + var collectCalculationsPerSegment = GrassCoverErosionInwardsHelper.CollectCalculationsPerSegment(twoSectionResults, calculations); // Assert Assert.AreEqual(2, collectCalculationsPerSegment.Count);