Index: Ringtoets/Common/test/Ringtoets.Common.IO.TestUtil/SoilLayer2DTestFactory.cs =================================================================== diff -u -r86320df646dfe8564940e686a98d6199b9c3b470 -rec201316303aa676976655dcdfd9285dcc3ec4f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.TestUtil/SoilLayer2DTestFactory.cs (.../SoilLayer2DTestFactory.cs) (revision 86320df646dfe8564940e686a98d6199b9c3b470) +++ Ringtoets/Common/test/Ringtoets.Common.IO.TestUtil/SoilLayer2DTestFactory.cs (.../SoilLayer2DTestFactory.cs) (revision ec201316303aa676976655dcdfd9285dcc3ec4f1) @@ -96,10 +96,10 @@ /// /// Creates a new instance of - /// which can be used for testing transformer implementations. + /// with a valid value for . /// /// The created . - public static SoilLayer2D CreateSoilLayer2DForTransforming() + public static SoilLayer2D CreateSoilLayer2DWithValidAquifer() { SoilLayer2D layer = CreateSoilLayer2D(); layer.IsAquifer = 0.0; @@ -108,8 +108,8 @@ } /// - /// Creates a new instance of which can be - /// used for testing transformer implementations. + /// Creates a new instance of with a valid value + /// for . /// /// The inner loops of the , /// for which each of the segments are connected to the next. @@ -119,8 +119,8 @@ /// Thrown when any input parameter is null. /// Thrown when the in /// or do not form a loop. - public static SoilLayer2D CreateSoilLayer2DForTransforming(IEnumerable> innerLoops, - IEnumerable outerLoop) + public static SoilLayer2D CreateSoilLayer2DWithValidAquifer(IEnumerable> innerLoops, + IEnumerable outerLoop) { SoilLayer2D layer = CreateSoilLayer2D(innerLoops, outerLoop); layer.IsAquifer = 0.0;