Fisheye: Tag af990fe02513d7cd12034e597037025ecf5aa948 refers to a dead (removed) revision in file `Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/PipingOutputContextProperties.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 746902d8ff996441c8d885dbea8bc605fcee8239 refers to a dead (removed) revision in file `Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/PipingOutputProperties.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Ringtoets.Piping.Forms.csproj
===================================================================
diff -u -r7111575120feef926652228c88b963ae1c18287e -raf990fe02513d7cd12034e597037025ecf5aa948
--- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Ringtoets.Piping.Forms.csproj (.../Ringtoets.Piping.Forms.csproj) (revision 7111575120feef926652228c88b963ae1c18287e)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Ringtoets.Piping.Forms.csproj (.../Ringtoets.Piping.Forms.csproj) (revision af990fe02513d7cd12034e597037025ecf5aa948)
@@ -43,7 +43,7 @@
-
+
Index: Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs
===================================================================
diff -u -rbbb75989e9785f5082835556cc30e643e6eb5890 -raf990fe02513d7cd12034e597037025ecf5aa948
--- Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs (.../PipingPlugin.cs) (revision bbb75989e9785f5082835556cc30e643e6eb5890)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs (.../PipingPlugin.cs) (revision af990fe02513d7cd12034e597037025ecf5aa948)
@@ -76,9 +76,9 @@
{
CreateInstance = context => new PipingInputContextProperties(context, new ObservablePropertyChangeHandler(context.PipingCalculation, context.WrappedData))
};
- yield return new PropertyInfo
+ yield return new PropertyInfo
{
- CreateInstance = context => new PipingOutputContextProperties(context.WrappedData, context.SemiProbabilisticOutput)
+ CreateInstance = context => new PipingOutputProperties(context.WrappedData, context.SemiProbabilisticOutput)
};
yield return new PropertyInfo
{
Fisheye: Tag af990fe02513d7cd12034e597037025ecf5aa948 refers to a dead (removed) revision in file `Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/PropertyClasses/PipingOutputContextPropertiesTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 746902d8ff996441c8d885dbea8bc605fcee8239 refers to a dead (removed) revision in file `Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/PropertyClasses/PipingOutputPropertiesTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Ringtoets.Piping.Forms.Test.csproj
===================================================================
diff -u -r7111575120feef926652228c88b963ae1c18287e -raf990fe02513d7cd12034e597037025ecf5aa948
--- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Ringtoets.Piping.Forms.Test.csproj (.../Ringtoets.Piping.Forms.Test.csproj) (revision 7111575120feef926652228c88b963ae1c18287e)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Ringtoets.Piping.Forms.Test.csproj (.../Ringtoets.Piping.Forms.Test.csproj) (revision af990fe02513d7cd12034e597037025ecf5aa948)
@@ -36,7 +36,7 @@
-
+
Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PipingPluginTest.cs
===================================================================
diff -u -r7111575120feef926652228c88b963ae1c18287e -raf990fe02513d7cd12034e597037025ecf5aa948
--- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PipingPluginTest.cs (.../PipingPluginTest.cs) (revision 7111575120feef926652228c88b963ae1c18287e)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PipingPluginTest.cs (.../PipingPluginTest.cs) (revision af990fe02513d7cd12034e597037025ecf5aa948)
@@ -78,7 +78,7 @@
PluginTestHelper.AssertPropertyInfoDefined(
propertyInfos,
typeof(PipingOutputContext),
- typeof(PipingOutputContextProperties));
+ typeof(PipingOutputProperties));
PluginTestHelper.AssertPropertyInfoDefined(
propertyInfos,
Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PropertyInfos/PipingOutputPropertyInfoTest.cs
===================================================================
diff -u -rbbb75989e9785f5082835556cc30e643e6eb5890 -raf990fe02513d7cd12034e597037025ecf5aa948
--- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PropertyInfos/PipingOutputPropertyInfoTest.cs (.../PipingOutputPropertyInfoTest.cs) (revision bbb75989e9785f5082835556cc30e643e6eb5890)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/PropertyInfos/PipingOutputPropertyInfoTest.cs (.../PipingOutputPropertyInfoTest.cs) (revision af990fe02513d7cd12034e597037025ecf5aa948)
@@ -39,7 +39,7 @@
public void SetUp()
{
plugin = new PipingPlugin();
- info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(PipingOutputContextProperties));
+ info = plugin.GetPropertyInfos().First(tni => tni.PropertyObjectType == typeof(PipingOutputProperties));
}
[TearDown]
@@ -66,7 +66,7 @@
IObjectProperties objectProperties = info.CreateInstance(context);
// Assert
- Assert.IsInstanceOf(objectProperties);
+ Assert.IsInstanceOf(objectProperties);
Assert.AreSame(output, objectProperties.Data);
}
}