Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/ConfirmingUseBreakWaterPropertiesTest.cs =================================================================== diff -u -rf8998df0ea8c1228216bbb00ed9178058af4af67 -r86bb01b9f86d6a742c8d057187cc246a8d9e2c54 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/ConfirmingUseBreakWaterPropertiesTest.cs (.../ConfirmingUseBreakWaterPropertiesTest.cs) (revision f8998df0ea8c1228216bbb00ed9178058af4af67) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/ConfirmingUseBreakWaterPropertiesTest.cs (.../ConfirmingUseBreakWaterPropertiesTest.cs) (revision 86bb01b9f86d6a742c8d057187cc246a8d9e2c54) @@ -44,7 +44,7 @@ public void DefaultConstructor_ExpectedValues() { // Call - var properties = new ConfirmingUseBreakWaterProperties(); + var properties = new ConfirmingUseBreakWaterProperties(); // Assert Assert.IsFalse(properties.UseBreakWater); @@ -57,7 +57,7 @@ public void DefaultConstructor_Always_ReadOnlyProperties() { // Call - var properties = new ConfirmingUseBreakWaterProperties(); + var properties = new ConfirmingUseBreakWaterProperties(); // Assert var dynamicPropertyBag = new DynamicPropertyBag(properties); @@ -108,7 +108,7 @@ }; // Call - var properties = new ConfirmingUseBreakWaterProperties(testUseBreakWater, calculation, handler); + var properties = new ConfirmingUseBreakWaterProperties(testUseBreakWater, calculation, handler); // Assert var dynamicPropertyBag = new DynamicPropertyBag(properties); @@ -152,7 +152,7 @@ mocks.ReplayAll(); // Call - TestDelegate test = () => new ConfirmingUseBreakWaterProperties(null, calculation, handler); + TestDelegate test = () => new ConfirmingUseBreakWaterProperties(null, calculation, handler); // Assert string paramName = Assert.Throws(test).ParamName; @@ -171,7 +171,7 @@ mocks.ReplayAll(); // Call - TestDelegate test = () => new ConfirmingUseBreakWaterProperties(testUseBreakWater, null, handler); + TestDelegate test = () => new ConfirmingUseBreakWaterProperties(testUseBreakWater, null, handler); // Assert string paramName = Assert.Throws(test).ParamName; @@ -190,7 +190,7 @@ mocks.ReplayAll(); // Call - TestDelegate test = () => new ConfirmingUseBreakWaterProperties(testUseBreakWater, calculation, null); + TestDelegate test = () => new ConfirmingUseBreakWaterProperties(testUseBreakWater, calculation, null); // Assert string paramName = Assert.Throws(test).ParamName; @@ -214,7 +214,7 @@ }; // Call - var properties = new ConfirmingUseBreakWaterProperties(useBreakWaterData, calculation, handler); + var properties = new ConfirmingUseBreakWaterProperties(useBreakWaterData, calculation, handler); // Assert Assert.IsTrue(properties.UseBreakWater); @@ -263,7 +263,7 @@ } private void SetPropertyAndVerifyNotifcationsAndOutputForCalculation( - Action> setProperty, + Action> setProperty, TPropertyValue expectedValueSet, TestUseBreakWater input) { @@ -283,7 +283,7 @@ observable }); - var properties = new ConfirmingUseBreakWaterProperties(input, calculation, handler); + var properties = new ConfirmingUseBreakWaterProperties(input, calculation, handler); // Call setProperty(properties);