// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System; using System.Drawing; using Application.Ringtoets.Storage.DbContext; using Application.Ringtoets.Storage.Read.Piping; using NUnit.Framework; using Ringtoets.Piping.Primitives; namespace Application.Ringtoets.Storage.Test.Read.Piping { [TestFixture] public class SoilLayerEntityReadExtensionsTest { [Test] [TestCase(true)] [TestCase(false)] public void Read_WithValues_ReturnPipingSoilLayerWithDoubleParameterValues(bool isAquifer) { // Setup var random = new Random(21); double top = random.NextDouble(); int color = Color.AliceBlue.ToArgb(); const string materialName = "sand"; double belowPhreaticLevelMean = random.NextDouble(); double belowPhreaticLevelDeviation = random.NextDouble(); double belowPhreaticLevelShift = random.NextDouble(); double diameterD70Mean = random.NextDouble(); double diameterD70CoefficientOfVariation = random.NextDouble(); double permeabilityMean = random.NextDouble(); double permeabilityCoefficientOfVariation = random.NextDouble(); var entity = new SoilLayerEntity { Top = top, IsAquifer = Convert.ToByte(isAquifer), Color = color, MaterialName = materialName, BelowPhreaticLevelMean = belowPhreaticLevelMean, BelowPhreaticLevelDeviation = belowPhreaticLevelDeviation, BelowPhreaticLevelShift = belowPhreaticLevelShift, DiameterD70Mean = diameterD70Mean, DiameterD70CoefficientOfVariation = diameterD70CoefficientOfVariation, PermeabilityMean = permeabilityMean, PermeabilityCoefficientOfVariation = permeabilityCoefficientOfVariation }; // Call PipingSoilLayer layer = entity.Read(); // Assert Assert.IsNotNull(layer); Assert.AreEqual(top, layer.Top, 1e-6); Assert.AreEqual(isAquifer, layer.IsAquifer); Assert.AreEqual(Color.FromArgb(color), layer.Color); Assert.AreEqual(materialName, layer.MaterialName); Assert.AreEqual(belowPhreaticLevelMean, layer.BelowPhreaticLevelMean); Assert.AreEqual(belowPhreaticLevelDeviation, layer.BelowPhreaticLevelDeviation); Assert.AreEqual(belowPhreaticLevelShift, layer.BelowPhreaticLevelShift); Assert.AreEqual(diameterD70Mean, layer.DiameterD70Mean); Assert.AreEqual(diameterD70CoefficientOfVariation, layer.DiameterD70CoefficientOfVariation); Assert.AreEqual(permeabilityMean, layer.PermeabilityMean); Assert.AreEqual(permeabilityCoefficientOfVariation, layer.PermeabilityCoefficientOfVariation); } } }