Fisheye: Tag e5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4 refers to a dead (removed) revision in file `Riskeer/Piping/test/Riskeer.Piping.Forms.Test/Views/ProbabilisticPipingOutputGeneralResultFaultTreeIllustrationPointViewTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Riskeer/Piping/test/Riskeer.Piping.Forms.Test/Views/ProbabilisticPipingProfileSpecificOutputViewTest.cs
===================================================================
diff -u
--- Riskeer/Piping/test/Riskeer.Piping.Forms.Test/Views/ProbabilisticPipingProfileSpecificOutputViewTest.cs (revision 0)
+++ Riskeer/Piping/test/Riskeer.Piping.Forms.Test/Views/ProbabilisticPipingProfileSpecificOutputViewTest.cs (revision e5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4)
@@ -0,0 +1,45 @@
+// Copyright (C) Stichting Deltares 2019. All rights reserved.
+//
+// This file is part of Riskeer.
+//
+// Riskeer is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Threading;
+using NUnit.Framework;
+using Riskeer.Common.Data.TestUtil.IllustrationPoints;
+using Riskeer.Common.Forms.Views;
+using Riskeer.Piping.Forms.Views;
+
+namespace Riskeer.Piping.Forms.Test.Views
+{
+ [TestFixture]
+ [Apartment(ApartmentState.STA)]
+ public class ProbabilisticPipingProfileSpecificOutputViewTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var view = new ProbabilisticPipingProfileSpecificOutputView(() => new TestGeneralResultFaultTreeIllustrationPoint());
+
+ // Assert
+ Assert.IsInstanceOf(view);
+ }
+
+ }
+}
Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/PipingPluginTest.cs
===================================================================
diff -u -rddaf60d416770fed7e16937e4081388da4d2a770 -re5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4
--- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/PipingPluginTest.cs (.../PipingPluginTest.cs) (revision ddaf60d416770fed7e16937e4081388da4d2a770)
+++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/PipingPluginTest.cs (.../PipingPluginTest.cs) (revision e5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4)
@@ -217,7 +217,7 @@
PluginTestHelper.AssertViewInfoDefined(
viewInfos,
typeof(ProbabilisticPipingProfileSpecificOutputContext),
- typeof(ProbabilisticPipingCalculation),
+ typeof(ProbabilisticPipingCalculationScenario),
typeof(ProbabilisticPipingProfileSpecificOutputView));
}
}
Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/ViewInfos/ProbabilisticPipingProfileSpecificOutputViewInfoTest.cs
===================================================================
diff -u -rddaf60d416770fed7e16937e4081388da4d2a770 -re5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4
--- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/ViewInfos/ProbabilisticPipingProfileSpecificOutputViewInfoTest.cs (.../ProbabilisticPipingProfileSpecificOutputViewInfoTest.cs) (revision ddaf60d416770fed7e16937e4081388da4d2a770)
+++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/ViewInfos/ProbabilisticPipingProfileSpecificOutputViewInfoTest.cs (.../ProbabilisticPipingProfileSpecificOutputViewInfoTest.cs) (revision e5149a7ed53dfe98cae93c8f7376ae92b5d8f5f4)
@@ -71,7 +71,7 @@
{
// Assert
Assert.AreEqual(typeof(ProbabilisticPipingProfileSpecificOutputContext), info.DataType);
- Assert.AreEqual(typeof(ProbabilisticPipingCalculation), info.ViewDataType);
+ Assert.AreEqual(typeof(ProbabilisticPipingCalculationScenario), info.ViewDataType);
TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.GeneralOutputIcon, info.Image);
}