Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/Input/KernelInputAssert.cs =================================================================== diff -u -r49285e2d4b1469c99b962584c656aa2a50471dae -r0195ba0ecf1a1af2d7751cb9d9c070c9bdceacec --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/Input/KernelInputAssert.cs (.../KernelInputAssert.cs) (revision 49285e2d4b1469c99b962584c656aa2a50471dae) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/Input/KernelInputAssert.cs (.../KernelInputAssert.cs) (revision 0195ba0ecf1a1af2d7751cb9d9c070c9bdceacec) @@ -116,6 +116,23 @@ /// /// Asserts whether is equal to . /// + /// The expected collection of . + /// The actual collection of . + /// Thrown when + /// is not equal to . + private static void AssertSurfaces(ICollection expected, ICollection actual) + { + Assert.AreEqual(expected.Count, actual.Count); + + for (var i = 0; i < expected.Count; i++) + { + AssertSurface(expected.ElementAt(i), actual.ElementAt(i)); + } + } + + /// + /// Asserts whether is equal to . + /// /// The expected . /// The actual . /// Thrown when @@ -136,23 +153,6 @@ /// /// Asserts whether is equal to . /// - /// The expected collection of . - /// The actual collection of . - /// Thrown when - /// is not equal to . - private static void AssertSurfaces(ICollection expected, ICollection actual) - { - Assert.AreEqual(expected.Count, actual.Count); - - for (var i = 0; i < expected.Count; i++) - { - AssertSurface(expected.ElementAt(i), actual.ElementAt(i)); - } - } - - /// - /// Asserts whether is equal to . - /// /// The expected . /// The actual . /// Thrown when