Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/ClosingStructures/src/Riskeer.ClosingStructures.Forms/PropertyClasses/ClosingStructuresOutputProperties.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/ClosingStructures/test/Riskeer.ClosingStructures.Forms.Test/PropertyClasses/ClosingStructuresOutputPropertiesTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/HeightStructures/src/Riskeer.HeightStructures.Forms/PresentationObjects/HeightStructuresOutputContext.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/HeightStructures/src/Riskeer.HeightStructures.Forms/PropertyClasses/HeightStructuresOutputProperties.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/HeightStructures/src/Riskeer.HeightStructures.Plugin/HeightStructuresPlugin.cs =================================================================== diff -u -re8faf56fec441bd97d5791a1a867c146c94ac85d -r2fa986a816b48101a52c659c1ae89c3d9d7c5511 --- Riskeer/HeightStructures/src/Riskeer.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision e8faf56fec441bd97d5791a1a867c146c94ac85d) +++ Riskeer/HeightStructures/src/Riskeer.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision 2fa986a816b48101a52c659c1ae89c3d9d7c5511) @@ -89,10 +89,6 @@ context, new ObservablePropertyChangeHandler(context.Calculation, context.WrappedData)) }; - yield return new PropertyInfo - { - CreateInstance = context => new HeightStructuresOutputProperties(context.WrappedData.Output) - }; } public override IEnumerable GetImportInfos() @@ -718,7 +714,7 @@ calculation, context.FailureMechanism, context.AssessmentSection), - new HeightStructuresOutputContext(calculation, context.AssessmentSection) + new StructuresOutputContext(calculation, context.AssessmentSection) }; } Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/HeightStructures/test/Riskeer.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresOutputContextTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/HeightStructures/test/Riskeer.HeightStructures.Forms.Test/PropertyClasses/HeightStructuresOutputPropertiesTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs =================================================================== diff -u -r425e7027bd912f2c2c416ede1a90356d3b183881 -r2fa986a816b48101a52c659c1ae89c3d9d7c5511 --- Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 425e7027bd912f2c2c416ede1a90356d3b183881) +++ Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 2fa986a816b48101a52c659c1ae89c3d9d7c5511) @@ -62,13 +62,13 @@ PropertyInfo[] propertyInfos = plugin.GetPropertyInfos().ToArray(); // Assert - Assert.AreEqual(6, propertyInfos.Length); + Assert.AreEqual(5, propertyInfos.Length); PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(HeightStructuresCalculationsContext), typeof(HeightStructuresCalculationsProperties)); - + PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(HeightStructuresFailurePathContext), @@ -88,11 +88,6 @@ propertyInfos, typeof(HeightStructuresInputContext), typeof(HeightStructuresInputContextProperties)); - - PluginTestHelper.AssertPropertyInfoDefined( - propertyInfos, - typeof(HeightStructuresOutputContext), - typeof(HeightStructuresOutputProperties)); } } @@ -135,7 +130,7 @@ viewInfos, typeof(HeightStructuresCalculationsContext), typeof(HeightStructuresFailureMechanismView)); - + PluginTestHelper.AssertViewInfoDefined( viewInfos, typeof(HeightStructuresFailurePathContext), Fisheye: Tag 2fa986a816b48101a52c659c1ae89c3d9d7c5511 refers to a dead (removed) revision in file `Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/PropertyInfos/HeightStructuresOutputPropertyInfoTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -r65fa32b1acf95b7ac64bf78c7df5e1852ac809bf -r2fa986a816b48101a52c659c1ae89c3d9d7c5511 --- Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision 65fa32b1acf95b7ac64bf78c7df5e1852ac809bf) +++ Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2fa986a816b48101a52c659c1ae89c3d9d7c5511) @@ -42,6 +42,7 @@ using Riskeer.Common.Data.Structures; using Riskeer.Common.Data.TestUtil; using Riskeer.Common.Data.TestUtil.IllustrationPoints; +using Riskeer.Common.Forms.PresentationObjects; using Riskeer.Common.Service.TestUtil; using Riskeer.HeightStructures.Data; using Riskeer.HeightStructures.Data.TestUtil; @@ -140,7 +141,7 @@ Assert.IsNotNull(heightStructuresInputContext); Assert.AreSame(calculationContext.WrappedData.InputParameters, heightStructuresInputContext.WrappedData); - var structuresOutputContext = children[2] as HeightStructuresOutputContext; + var structuresOutputContext = children[2] as StructuresOutputContext; Assert.IsNotNull(structuresOutputContext); Assert.AreSame(calculationContext.WrappedData, structuresOutputContext.WrappedData); Assert.AreSame(calculationContext.AssessmentSection, structuresOutputContext.AssessmentSection);