Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.TestUtil/TestStochasticSoilModelUpdateModelStrategy.cs
===================================================================
diff -u -re1a8e98d60853beefbdb8c84e70f14165680ad7b -r0652e34fa7946d2bd466f9331b3daa728804d109
--- Ringtoets/Piping/test/Ringtoets.Piping.IO.TestUtil/TestStochasticSoilModelUpdateModelStrategy.cs (.../TestStochasticSoilModelUpdateModelStrategy.cs) (revision e1a8e98d60853beefbdb8c84e70f14165680ad7b)
+++ Ringtoets/Piping/test/Ringtoets.Piping.IO.TestUtil/TestStochasticSoilModelUpdateModelStrategy.cs (.../TestStochasticSoilModelUpdateModelStrategy.cs) (revision 0652e34fa7946d2bd466f9331b3daa728804d109)
@@ -27,11 +27,31 @@
namespace Ringtoets.Piping.IO.TestUtil
{
+ ///
+ /// Implementation of a which can be used for
+ /// testing.
+ ///
public class TestStochasticSoilModelUpdateModelStrategy : IStochasticSoilModelUpdateModelStrategy
{
+ ///
+ /// Gets a value which indicates whether has
+ /// been called.
+ ///
public bool Updated { get; private set; }
+
+ ///
+ /// Gets the models that were passed to as the read models.
+ ///
public StochasticSoilModel[] ReadModels { get; private set; }
+
+ ///
+ /// Gets the file path that was passed to .
+ ///
public string FilePath { get; private set; }
+
+ ///
+ /// Gets or sets the instances that will be returned by .
+ ///
public IEnumerable UpdatedInstances { get; set; } = Enumerable.Empty();
public IEnumerable UpdateModelWithImportedData(StochasticSoilModelCollection targetCollection,