public void Compare_AssessmentSectionsNotEquivalentAndWithoutHydraulicLocationConfigurationSettings_ReturnsFalse(AssessmentSection otherAssessmentSection) { // Setup var comparer = new AssessmentSectionMergeComparer(); // Call bool result = comparer.Compare(CreateAssessmentSection(), otherAssessmentSection); // Assert Assert.IsFalse(result); }
public void Compare_OtherAssessmentSectionNull_ThrowsArgumentNullException() { // Setup var comparer = new AssessmentSectionMergeComparer(); // Call void Call() => comparer.Compare(CreateAssessmentSection(), null); // Assert var exception = Assert.Throws <ArgumentNullException>(Call); Assert.AreEqual("otherAssessmentSection", exception.ParamName); }
public void Compare_AssessmentSectionWithNotEquivalentHydraulicBoundaryLocationConfigurationSettings_ReturnsFalse(AssessmentSection otherAssessmentSection) { // Setup AssessmentSection assessmentSection = CreateAssessmentSection(); SetHydraulicLocationConfigurationValues(assessmentSection.HydraulicBoundaryDatabase.HydraulicLocationConfigurationSettings); var comparer = new AssessmentSectionMergeComparer(); // Call bool result = comparer.Compare(assessmentSection, otherAssessmentSection); // Assert Assert.IsFalse(result); }
public void Compare_AssessmentSectionsHaveEquivalentReferenceLines_ReturnsTrue(bool referenceLineImported) { // Setup AssessmentSection assessmentSection = CreateAssessmentSection(); AssessmentSection otherAssessmentSection = CreateAssessmentSection(); if (!referenceLineImported) { assessmentSection.ReferenceLine.SetGeometry(Enumerable.Empty <Point2D>()); otherAssessmentSection.ReferenceLine.SetGeometry(Enumerable.Empty <Point2D>()); } var comparer = new AssessmentSectionMergeComparer(); // Call bool result = comparer.Compare(assessmentSection, otherAssessmentSection); // Assert Assert.IsTrue(result); }