Index: Application/Riskeer/test/Application.Riskeer.Integration.Test/Application.Riskeer.Integration.Test.csproj =================================================================== diff -u -rf907ea63cbb78d5f91e41102448f5247bfa0459f -r711926831e7b9fe24d536b184db5e5a4294c899a --- Application/Riskeer/test/Application.Riskeer.Integration.Test/Application.Riskeer.Integration.Test.csproj (.../Application.Riskeer.Integration.Test.csproj) (revision f907ea63cbb78d5f91e41102448f5247bfa0459f) +++ Application/Riskeer/test/Application.Riskeer.Integration.Test/Application.Riskeer.Integration.Test.csproj (.../Application.Riskeer.Integration.Test.csproj) (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -24,6 +24,7 @@ + Index: Application/Riskeer/test/Application.Riskeer.Integration.Test/StorageMigrationIntegrationTest.cs =================================================================== diff -u -r4cd36cfdb9ddea498762088f113df2277ca62333 -r711926831e7b9fe24d536b184db5e5a4294c899a --- Application/Riskeer/test/Application.Riskeer.Integration.Test/StorageMigrationIntegrationTest.cs (.../StorageMigrationIntegrationTest.cs) (revision 4cd36cfdb9ddea498762088f113df2277ca62333) +++ Application/Riskeer/test/Application.Riskeer.Integration.Test/StorageMigrationIntegrationTest.cs (.../StorageMigrationIntegrationTest.cs) (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -32,6 +32,7 @@ using Rhino.Mocks; using Riskeer.Common.Util; using Riskeer.Integration.Data; +using Riskeer.Integration.Plugin; using Riskeer.Migration; using Riskeer.Migration.Core; using Riskeer.Migration.Core.TestUtil; Fisheye: Tag 711926831e7b9fe24d536b184db5e5a4294c899a refers to a dead (removed) revision in file `Riskeer/Integration/src/Riskeer.Integration.Data/RiskeerProjectFactory.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerProjectFactory.cs =================================================================== diff -u --- Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerProjectFactory.cs (revision 0) +++ Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerProjectFactory.cs (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -0,0 +1,44 @@ +// Copyright (C) Stichting Deltares 2021. 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 Core.Common.Base.Data; +using Riskeer.Common.Data.AssessmentSection; +using Riskeer.Integration.Data; + +namespace Riskeer.Integration.Plugin +{ + /// + /// Factory to create instances of . + /// + public class RiskeerProjectFactory : IProjectFactory + { + public IProject CreateNewProject() + { + return new RiskeerProject + { + AssessmentSections = + { + new AssessmentSection(AssessmentSectionComposition.Dike) + } + }; + } + } +} \ No newline at end of file Index: Riskeer/Integration/test/Riskeer.Integration.Data.Test/Riskeer.Integration.Data.Test.csproj =================================================================== diff -u -r08e8d26a0715f0f3db57c1d3e86256aa06934db4 -r711926831e7b9fe24d536b184db5e5a4294c899a --- Riskeer/Integration/test/Riskeer.Integration.Data.Test/Riskeer.Integration.Data.Test.csproj (.../Riskeer.Integration.Data.Test.csproj) (revision 08e8d26a0715f0f3db57c1d3e86256aa06934db4) +++ Riskeer/Integration/test/Riskeer.Integration.Data.Test/Riskeer.Integration.Data.Test.csproj (.../Riskeer.Integration.Data.Test.csproj) (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -5,29 +5,29 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + Fisheye: Tag 711926831e7b9fe24d536b184db5e5a4294c899a refers to a dead (removed) revision in file `Riskeer/Integration/test/Riskeer.Integration.Data.Test/RiskeerProjectFactoryTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/RiskeerProjectFactoryTest.cs =================================================================== diff -u --- Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/RiskeerProjectFactoryTest.cs (revision 0) +++ Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/RiskeerProjectFactoryTest.cs (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -0,0 +1,44 @@ +// Copyright (C) Stichting Deltares 2021. 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 Core.Common.Base.Data; +using NUnit.Framework; +using Riskeer.Integration.Data; + +namespace Riskeer.Integration.Plugin.Test +{ + [TestFixture] + public class RiskeerProjectFactoryTest + { + [Test] + public void CreateNewProject_ReturnsNewRiskeerProject() + { + // Setup + var projectFactory = new RiskeerProjectFactory(); + + // Call + IProject result = projectFactory.CreateNewProject(); + + // Assert + Assert.IsInstanceOf(result); + } + } +} \ No newline at end of file Index: Riskeer/Storage/test/Riskeer.Storage.Core.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -r76d78638e53c297dcee57e8bedce48bd35b1ae7f -r711926831e7b9fe24d536b184db5e5a4294c899a --- Riskeer/Storage/test/Riskeer.Storage.Core.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 76d78638e53c297dcee57e8bedce48bd35b1ae7f) +++ Riskeer/Storage/test/Riskeer.Storage.Core.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -51,6 +51,7 @@ using Riskeer.Integration.Data; using Riskeer.Integration.Data.StandAlone; using Riskeer.Integration.Data.StandAlone.SectionResults; +using Riskeer.Integration.Plugin; using Riskeer.MacroStabilityInwards.Data; using Riskeer.MacroStabilityInwards.Data.SoilProfile; using Riskeer.MacroStabilityInwards.Primitives; Index: Riskeer/Storage/test/Riskeer.Storage.Core.Test/Riskeer.Storage.Core.Test.csproj =================================================================== diff -u -r4199d1b59dde10f72e8f5c5fdb7ded4dd25a9e13 -r711926831e7b9fe24d536b184db5e5a4294c899a --- Riskeer/Storage/test/Riskeer.Storage.Core.Test/Riskeer.Storage.Core.Test.csproj (.../Riskeer.Storage.Core.Test.csproj) (revision 4199d1b59dde10f72e8f5c5fdb7ded4dd25a9e13) +++ Riskeer/Storage/test/Riskeer.Storage.Core.Test/Riskeer.Storage.Core.Test.csproj (.../Riskeer.Storage.Core.Test.csproj) (revision 711926831e7b9fe24d536b184db5e5a4294c899a) @@ -52,6 +52,7 @@ +