public void GivenCreatedEntity_WhenCreateCalledOnSameObject_ThenSameEntityInstanceReturned(IMacroStabilityInwardsSoilProfile <IMacroStabilityInwardsSoilLayer> soilProfile) { // Given var stochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(0.4, soilProfile); var registry = new PersistenceRegistry(); MacroStabilityInwardsStochasticSoilProfileEntity entity1 = stochasticSoilProfile.Create(registry, 0); // When MacroStabilityInwardsStochasticSoilProfileEntity entity2 = stochasticSoilProfile.Create(registry, 0); // Then Assert.AreSame(entity1, entity2); }
public void Create_WithUnsupportedSoilProfile_ThrowsNotSupportedException() { // Setup var stochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(0.5, new UnsupportedMacroStabilityInwardsSoilProfile()); var registry = new PersistenceRegistry(); // Call TestDelegate test = () => stochasticSoilProfile.Create(registry, 1); // Assert var exception = Assert.Throws <NotSupportedException>(test); Assert.AreEqual($"{nameof(UnsupportedMacroStabilityInwardsSoilProfile)} is not supported. " + $"Supported types are: {nameof(MacroStabilityInwardsSoilProfile1D)} and {nameof(MacroStabilityInwardsSoilProfile2D)}.", exception.Message); }
public void Create_PersistenceRegistryNull_ThrowsArgumentNullException() { // Setup var mockRepository = new MockRepository(); var soilProfile = mockRepository.Stub <IMacroStabilityInwardsSoilProfile <IMacroStabilityInwardsSoilLayer> >(); mockRepository.ReplayAll(); var stochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(0, soilProfile); // Call TestDelegate test = () => stochasticSoilProfile.Create(null, 0); // Assert string parameterName = Assert.Throws <ArgumentNullException>(test).ParamName; Assert.AreEqual("registry", parameterName); mockRepository.VerifyAll(); }
public void Create_DifferentStochasticSoilProfilesWithSameMacroStabilityInwardsSoilProfile2D_ReturnsEntityWithSameSoilProfileEntitySet() { // Setup var random = new Random(31); MacroStabilityInwardsSoilProfile2D soilProfile = MacroStabilityInwardsSoilProfile2DTestFactory.CreateMacroStabilityInwardsSoilProfile2D(); var firstStochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(random.NextDouble(), soilProfile); var secondStochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(random.NextDouble(), soilProfile); var registry = new PersistenceRegistry(); MacroStabilityInwardsStochasticSoilProfileEntity firstEntity = firstStochasticSoilProfile.Create(registry, 0); // Call MacroStabilityInwardsStochasticSoilProfileEntity secondEntity = secondStochasticSoilProfile.Create(registry, 0); // Assert Assert.IsNull(firstEntity.MacroStabilityInwardsSoilProfileOneDEntity); Assert.IsNull(secondEntity.MacroStabilityInwardsSoilProfileOneDEntity); Assert.AreSame(firstEntity.MacroStabilityInwardsSoilProfileTwoDEntity, secondEntity.MacroStabilityInwardsSoilProfileTwoDEntity); }
public void Create_WithMacroStabilityInwardsSoilProfile1D_ReturnsStochasticSoilProfileEntityWithPropertiesSet() { // Setup var random = new Random(31); MacroStabilityInwardsSoilProfile1D soilProfile = MacroStabilityInwardsSoilProfile1DTestFactory.CreateMacroStabilityInwardsSoilProfile1D(nameof(MacroStabilityInwardsSoilProfile1D)); var stochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(random.NextDouble(), soilProfile); int order = random.Next(); var registry = new PersistenceRegistry(); // Call MacroStabilityInwardsStochasticSoilProfileEntity entity = stochasticSoilProfile.Create(registry, order); // Assert Assert.IsNotNull(entity); Assert.AreEqual(stochasticSoilProfile.Probability, entity.Probability); Assert.AreEqual(soilProfile.Name, entity.MacroStabilityInwardsSoilProfileOneDEntity.Name); Assert.IsNull(entity.MacroStabilityInwardsSoilProfileTwoDEntity); Assert.AreEqual(order, entity.Order); }