using System.Collections.ObjectModel;
using Ringtoets.Piping.Data;
namespace Ringtoets.Piping.Calculation.TestUtil
{
public class TestPipingSoilProfile : PipingSoilProfile
{
///
/// Creates a new instance of , which is a
/// which has:
///
/// - set to
/// - set to 0.0
/// - set to a collection with a single
/// with set to 0.0.
///
///
public TestPipingSoilProfile() : base("", 0.0, new Collection
{
new PipingSoilLayer(0.0)
{
IsAquifer = true
}
}) {}
}
}