Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationActivityTest.cs =================================================================== diff -u -rf109332b5185b4445e2f1b9386dc1fe4063ff20f -rab20c4eb4ca81bd3845d50210d2bdb301177af6a --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationActivityTest.cs (.../HeightStructuresCalculationActivityTest.cs) (revision f109332b5185b4445e2f1b9386dc1fe4063ff20f) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationActivityTest.cs (.../HeightStructuresCalculationActivityTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) @@ -24,6 +24,7 @@ using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data.AssessmentSection; +using Ringtoets.Common.Data.Structures; using Ringtoets.HeightStructures.Data; namespace Ringtoets.HeightStructures.Service.Test @@ -40,7 +41,7 @@ mocks.ReplayAll(); var failureMechanism = new HeightStructuresFailureMechanism(); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call var activity = new HeightStructuresCalculationActivity(calculation, "", failureMechanism, assessmentSectionMock); @@ -82,7 +83,7 @@ mocks.ReplayAll(); var failureMechanism = new HeightStructuresFailureMechanism(); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call TestDelegate call = () => new HeightStructuresCalculationActivity(calculation, null, failureMechanism, assessmentSectionMock); @@ -101,7 +102,7 @@ var assessmentSectionMock = mocks.StrictMock(); mocks.ReplayAll(); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call TestDelegate call = () => new HeightStructuresCalculationActivity(calculation, "", null, assessmentSectionMock); @@ -117,7 +118,7 @@ { // Setup var failureMechanism = new HeightStructuresFailureMechanism(); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call TestDelegate call = () => new HeightStructuresCalculationActivity(calculation, "", failureMechanism, null);