Fisheye: Tag d520a1dd8a435c8de3ae5aab1c02b4be9627b67d refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/FailureMechanismAssemblyCategoriesBaseProperties.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag e6944724df4a525632b83d596ca0ae4b2ebc0766 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/FailureMechanismAssemblyCategoriesProperties.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj =================================================================== diff -u -re6944724df4a525632b83d596ca0ae4b2ebc0766 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj (.../Ringtoets.Common.Forms.csproj) (revision e6944724df4a525632b83d596ca0ae4b2ebc0766) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Ringtoets.Common.Forms.csproj (.../Ringtoets.Common.Forms.csproj) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -96,7 +96,7 @@ - + Fisheye: Tag d520a1dd8a435c8de3ae5aab1c02b4be9627b67d refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/FailureMechanismAssemblyCategoriesBasePropertiesTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag e6944724df4a525632b83d596ca0ae4b2ebc0766 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/FailureMechanismAssemblyCategoriesPropertiesTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Ringtoets.Common.Forms.Test.csproj =================================================================== diff -u -re6944724df4a525632b83d596ca0ae4b2ebc0766 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Ringtoets.Common.Forms.Test.csproj (.../Ringtoets.Common.Forms.Test.csproj) (revision e6944724df4a525632b83d596ca0ae4b2ebc0766) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Ringtoets.Common.Forms.Test.csproj (.../Ringtoets.Common.Forms.Test.csproj) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -101,7 +101,7 @@ - + Index: Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/AssemblyCategoryPropertiesTestHelper.cs =================================================================== diff -u -r142c01dea0898959a474a96e524d70438750aadf -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/AssemblyCategoryPropertiesTestHelper.cs (.../AssemblyCategoryPropertiesTestHelper.cs) (revision 142c01dea0898959a474a96e524d70438750aadf) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/AssemblyCategoryPropertiesTestHelper.cs (.../AssemblyCategoryPropertiesTestHelper.cs) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -38,13 +38,13 @@ /// /// The collection of expected . /// The collection of expected . - /// The actual to assert. + /// The actual to assert. /// Thrown when the content of does not equal /// and . public static void AssertFailureMechanismAssemblyCategoryProperties( IEnumerable expectedFailureMechanismCategories, IEnumerable expectedFailureMechanismSectionCategories, - FailureMechanismAssemblyCategoriesBaseProperties properties) + FailureMechanismAssemblyCategoriesProperties properties) { Assert.AreEqual(expectedFailureMechanismCategories.Count(), properties.FailureMechanismAssemblyCategories.Length); for (var i = 0; i < expectedFailureMechanismCategories.Count(); i++) Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r0ebcd2c2000e767623f8eada05f920af400d5530 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 0ebcd2c2000e767623f8eada05f920af400d5530) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -378,17 +378,17 @@ { CreateInstance = context => new ReferenceLineProperties(context.WrappedData) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new FailureMechanismAssemblyCategoriesBaseProperties(context.WrappedData, - context.GetFailureMechanismCategoriesFunc, - context.GetFailureMechanismSectionAssemblyCategoriesFunc) + CreateInstance = context => new FailureMechanismAssemblyCategoriesProperties(context.WrappedData, + context.GetFailureMechanismCategoriesFunc, + context.GetFailureMechanismSectionAssemblyCategoriesFunc) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new FailureMechanismAssemblyCategoriesBaseProperties(context.WrappedData, - context.GetFailureMechanismCategoriesFunc, - context.GetFailureMechanismSectionAssemblyCategoriesFunc) + CreateInstance = context => new FailureMechanismAssemblyCategoriesProperties(context.WrappedData, + context.GetFailureMechanismCategoriesFunc, + context.GetFailureMechanismSectionAssemblyCategoriesFunc) }; } Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/FailureMechanismAssemblyCategoriesPropertyInfoTest.cs =================================================================== diff -u -r0ebcd2c2000e767623f8eada05f920af400d5530 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/FailureMechanismAssemblyCategoriesPropertyInfoTest.cs (.../FailureMechanismAssemblyCategoriesPropertyInfoTest.cs) (revision 0ebcd2c2000e767623f8eada05f920af400d5530) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/FailureMechanismAssemblyCategoriesPropertyInfoTest.cs (.../FailureMechanismAssemblyCategoriesPropertyInfoTest.cs) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -41,7 +41,7 @@ public void SetUp() { plugin = new RingtoetsPlugin(); - info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(FailureMechanismAssemblyCategoriesBaseProperties) + info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(FailureMechanismAssemblyCategoriesProperties) && tni.DataType == typeof(FailureMechanismAssemblyCategoriesContext)); } @@ -73,7 +73,7 @@ IObjectProperties objectProperties = info.CreateInstance(context); // Assert - Assert.IsInstanceOf(objectProperties); + Assert.IsInstanceOf(objectProperties); Assert.AreSame(failureMechanism, objectProperties.Data); mocks.VerifyAll(); Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/GeotechnicalFailureMechanismAssemblyCategoriesPropertyInfoTest.cs =================================================================== diff -u -r0ebcd2c2000e767623f8eada05f920af400d5530 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/GeotechnicalFailureMechanismAssemblyCategoriesPropertyInfoTest.cs (.../GeotechnicalFailureMechanismAssemblyCategoriesPropertyInfoTest.cs) (revision 0ebcd2c2000e767623f8eada05f920af400d5530) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/GeotechnicalFailureMechanismAssemblyCategoriesPropertyInfoTest.cs (.../GeotechnicalFailureMechanismAssemblyCategoriesPropertyInfoTest.cs) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -41,7 +41,7 @@ public void SetUp() { plugin = new RingtoetsPlugin(); - info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(FailureMechanismAssemblyCategoriesBaseProperties) + info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(FailureMechanismAssemblyCategoriesProperties) && tni.DataType == typeof(GeotechnicalFailureMechanismAssemblyCategoriesContext)); } @@ -73,7 +73,7 @@ IObjectProperties objectProperties = info.CreateInstance(context); // Assert - Assert.IsInstanceOf(objectProperties); + Assert.IsInstanceOf(objectProperties); Assert.AreSame(failureMechanism, objectProperties.Data); mocks.VerifyAll(); Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs =================================================================== diff -u -r0ebcd2c2000e767623f8eada05f920af400d5530 -rd520a1dd8a435c8de3ae5aab1c02b4be9627b67d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 0ebcd2c2000e767623f8eada05f920af400d5530) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision d520a1dd8a435c8de3ae5aab1c02b4be9627b67d) @@ -341,12 +341,12 @@ PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(FailureMechanismAssemblyCategoriesContext), - typeof(FailureMechanismAssemblyCategoriesBaseProperties)); + typeof(FailureMechanismAssemblyCategoriesProperties)); PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(GeotechnicalFailureMechanismAssemblyCategoriesContext), - typeof(FailureMechanismAssemblyCategoriesBaseProperties)); + typeof(FailureMechanismAssemblyCategoriesProperties)); } }