Index: Ringtoets.sln =================================================================== diff -u -r25bdf707d3cd78e182705e16371a376222b7ee79 -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets.sln (.../Ringtoets.sln) (revision 25bdf707d3cd78e182705e16371a376222b7ee79) +++ Ringtoets.sln (.../Ringtoets.sln) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -265,6 +265,8 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Components.Charting.Forms", "Core\Components\src\Core.Components.Charting.Forms\Core.Components.Charting.Forms.csproj", "{2465CCA1-C505-4827-9454-4FD5FD9194CD}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ringtoets.Piping.Calculation.TestUtil.Test", "Ringtoets\Piping\test\Ringtoets.Piping.Calculation.TestUtil.Test\Ringtoets.Piping.Calculation.TestUtil.Test.csproj", "{529C4919-27DE-4DDA-ABD6-537F21B3F223}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution CreateInstaller|x86 = CreateInstaller|x86 @@ -1022,6 +1024,14 @@ {2465CCA1-C505-4827-9454-4FD5FD9194CD}.Release|x86.Build.0 = Release|x86 {2465CCA1-C505-4827-9454-4FD5FD9194CD}.ReleaseForCodeCoverage|x86.ActiveCfg = ReleaseForCodeCoverage|x86 {2465CCA1-C505-4827-9454-4FD5FD9194CD}.ReleaseForCodeCoverage|x86.Build.0 = ReleaseForCodeCoverage|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.CreateInstaller|x86.ActiveCfg = Release|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.CreateInstallerWithDemoProject|x86.ActiveCfg = Release|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.Debug|x86.ActiveCfg = Debug|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.Debug|x86.Build.0 = Debug|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.Release|x86.ActiveCfg = Release|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.Release|x86.Build.0 = Release|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.ReleaseForCodeCoverage|x86.ActiveCfg = ReleaseForCodeCoverage|x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223}.ReleaseForCodeCoverage|x86.Build.0 = ReleaseForCodeCoverage|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -1093,6 +1103,7 @@ {D783543B-46A1-4848-A812-AF5A5259ED7E} = {1F0D20C2-7F04-431D-AF22-95A31FD53733} {813FFA92-1F3F-462B-B596-5919334007A9} = {1F0D20C2-7F04-431D-AF22-95A31FD53733} {35B78215-420B-4D7D-9959-9E9010601200} = {1F0D20C2-7F04-431D-AF22-95A31FD53733} + {529C4919-27DE-4DDA-ABD6-537F21B3F223} = {1F0D20C2-7F04-431D-AF22-95A31FD53733} {4A7D6720-4AA1-4F0B-A796-A0436DB3D7D7} = {39EB5D07-C076-484C-9621-B34C4E5BF64C} {3CCB05DB-C7B3-4EF7-B41D-22B6D2A3774E} = {39EB5D07-C076-484C-9621-B34C4E5BF64C} {50963F12-448C-41BA-A62C-CDB0AB8D21E0} = {39EB5D07-C076-484C-9621-B34C4E5BF64C} Index: Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculator.cs =================================================================== diff -u -ree0616189b53da348c17a4cf75328425beaf360b -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculator.cs (.../PipingCalculator.cs) (revision ee0616189b53da348c17a4cf75328425beaf360b) +++ Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculator.cs (.../PipingCalculator.cs) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -38,7 +38,7 @@ public class PipingCalculator { private readonly PipingCalculatorInput input; - private readonly PipingSubCalculatorFactory factory; + private readonly IPipingSubCalculatorFactory factory; /// /// Constructs a new . The is used to @@ -48,15 +48,15 @@ /// for performing a piping calculation. /// /// or is null. - public PipingCalculator(PipingCalculatorInput input, PipingSubCalculatorFactory factory) + public PipingCalculator(PipingCalculatorInput input, IPipingSubCalculatorFactory factory) { if (input == null) { throw new ArgumentNullException("input", "PipingCalculatorInput required for creating a PipingCalculator."); } if (factory == null) { - throw new ArgumentNullException("factory", "PipingSubCalculatorFactory required for creating a PipingCalculator."); + throw new ArgumentNullException("factory", "IPipingSubCalculatorFactory required for creating a PipingCalculator."); } this.input = input; this.factory = factory; Index: Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs =================================================================== diff -u -ree0616189b53da348c17a4cf75328425beaf360b -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision ee0616189b53da348c17a4cf75328425beaf360b) +++ Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -38,7 +38,7 @@ public static class PipingCalculationService { private static readonly ILog pipingCalculationLogger = LogManager.GetLogger(typeof(PipingCalculation)); - private static readonly PipingSubCalculatorFactory subCalculatorFactory = new PipingSubCalculatorFactory(); + private static readonly IPipingSubCalculatorFactory subCalculatorFactory = new PipingSubCalculatorFactory(); /// /// Performs validation over the values on the given . Error and status information is logged during Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.Test/PipingCalculatorTest.cs =================================================================== diff -u -ree0616189b53da348c17a4cf75328425beaf360b -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.Test/PipingCalculatorTest.cs (.../PipingCalculatorTest.cs) (revision ee0616189b53da348c17a4cf75328425beaf360b) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.Test/PipingCalculatorTest.cs (.../PipingCalculatorTest.cs) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -31,7 +31,7 @@ TestDelegate call = () => new PipingCalculator(new TestPipingInput().AsRealInput(), null); // Assert - TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, "PipingSubCalculatorFactory required for creating a PipingCalculator."); + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, "IPipingSubCalculatorFactory required for creating a PipingCalculator."); } [Test] Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Properties/AssemblyInfo.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Properties/AssemblyInfo.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Properties/AssemblyInfo.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Ringtoets.Piping.Calculation.TestUtil.Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Deltares")] +[assembly: AssemblyProduct("Ringtoets.Piping.Calculation.TestUtil.Test")] +[assembly: AssemblyCopyright("Copyright © Deltares 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("d243257d-83f9-4096-b066-db65e0c69d24")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Ringtoets.Piping.Calculation.TestUtil.Test.csproj =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Ringtoets.Piping.Calculation.TestUtil.Test.csproj (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/Ringtoets.Piping.Calculation.TestUtil.Test.csproj (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,72 @@ + + + + + Debug + x86 + {529C4919-27DE-4DDA-ABD6-537F21B3F223} + Library + Properties + Ringtoets.Piping.Calculation.TestUtil.Test + Ringtoets.Piping.Calculation.TestUtil.Test + v4.0 + 512 + + + + true + bin\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + + + bin\Release\ + TRACE + true + x86 + prompt + MinimumRecommendedRules.ruleset + + + bin\ReleaseForCodeCoverage\ + x86 + TRACE + true + pdbonly + + + + ..\..\..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll + + + + + + + + + + + + + + {D64E4F0E-E341-496F-82B2-941AD202B4E3} + Ringtoets.Piping.Calculation + + + {27E0A5C9-3ABF-426A-A3DA-7D0B83A218C8} + Ringtoets.Piping.Calculation.TestUtil + + + + + \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/SubCalculator/TestPipingSubCalculatorFactoryTest.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/SubCalculator/TestPipingSubCalculatorFactoryTest.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/SubCalculator/TestPipingSubCalculatorFactoryTest.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,76 @@ +using NUnit.Framework; +using Ringtoets.Piping.Calculation.SubCalculator; +using Ringtoets.Piping.Calculation.TestUtil.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.Test.SubCalculator +{ + [TestFixture] + public class TestPipingSubCalculatorFactoryTest + { + [Test] + public void DefaultConstructor_SetDefaultProperties() + { + // Call + var factory = new TestPipingSubCalculatorFactory(); + + // Assert + Assert.IsInstanceOf(factory); + Assert.IsNull(factory.LastCreatedEffectiveThicknessCalculator); + Assert.IsNull(factory.LastCreatedUpliftCalculator); + Assert.IsNull(factory.LastCreatedSellmeijerCalculator); + Assert.IsNull(factory.LastCreatedHeaveCalculator); + } + + [Test] + public void CreateEffectiveThicknessCalculator_Always_LastCreatedEffectiveThicknessCalculatorSetToReturnValue() + { + // Setup + var factory = new TestPipingSubCalculatorFactory(); + + // Call + var subCalculator = factory.CreateEffectiveThicknessCalculator(); + + // Assert + Assert.AreSame(factory.LastCreatedEffectiveThicknessCalculator, subCalculator); + } + + [Test] + public void CreateUpliftCalculator_Always_LastCreatedUpliftCalculatorSetToReturnValue() + { + // Setup + var factory = new TestPipingSubCalculatorFactory(); + + // Call + var subCalculator = factory.CreateUpliftCalculator(); + + // Assert + Assert.AreSame(factory.LastCreatedUpliftCalculator, subCalculator); + } + + [Test] + public void CreateHeaveCalculator_Always_LastCreatedHeaveCalculatorSetToReturnValue() + { + // Setup + var factory = new TestPipingSubCalculatorFactory(); + + // Call + var subCalculator = factory.CreateHeaveCalculator(); + + // Assert + Assert.AreSame(factory.LastCreatedHeaveCalculator, subCalculator); + } + + [Test] + public void CreateSellmeijerCalculator_Always_LastCreatedSellmeijerCalculatorSetToReturnValue() + { + // Setup + var factory = new TestPipingSubCalculatorFactory(); + + // Call + var subCalculator = factory.CreateSellmeijerCalculator(); + + // Assert + Assert.AreSame(factory.LastCreatedSellmeijerCalculator, subCalculator); + } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/packages.config =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/packages.config (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil.Test/packages.config (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,4 @@ + + + + \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/Ringtoets.Piping.Calculation.TestUtil.csproj =================================================================== diff -u -rdd7a5cfb0343fa2350b4143232b94cbba37612e9 -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/Ringtoets.Piping.Calculation.TestUtil.csproj (.../Ringtoets.Piping.Calculation.TestUtil.csproj) (revision dd7a5cfb0343fa2350b4143232b94cbba37612e9) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/Ringtoets.Piping.Calculation.TestUtil.csproj (.../Ringtoets.Piping.Calculation.TestUtil.csproj) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -42,11 +42,20 @@ MinimumRecommendedRules.ruleset + + False + ..\..\..\..\lib\Plugins\Wti\Deltares.WTIPiping.dll + + + + + + Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/EffectiveThicknessCalculatorStub.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/EffectiveThicknessCalculatorStub.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/EffectiveThicknessCalculatorStub.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,19 @@ +using Deltares.WTIPiping; +using Ringtoets.Piping.Calculation.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.SubCalculator +{ + public class EffectiveThicknessCalculatorStub : IEffectiveThicknessCalculator { + public double ExitPointXCoordinate { get; set; } + public double PhreaticLevel { get; set; } + public double VolumicWeightOfWater { get; set; } + public PipingProfile SoilProfile { get; set; } + public PipingSurfaceLine SurfaceLine { get; set; } + public double EffectiveHeight { get; private set; } + public double EffectiveStress { get; private set; } + public void Calculate() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/HeaveCalculatorStub.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/HeaveCalculatorStub.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/HeaveCalculatorStub.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,25 @@ +using System.Collections.Generic; +using Ringtoets.Piping.Calculation.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.SubCalculator +{ + public class HeaveCalculatorStub : IHeaveCalculator { + public double DTotal { get; set; } + public double HExit { get; set; } + public double Ich { get; set; } + public double PhiExit { get; set; } + public double PhiPolder { get; set; } + public double RExit { get; set; } + public double Zh { get; private set; } + public double FoSh { get; private set; } + public void Calculate() + { + throw new System.NotImplementedException(); + } + + public List Validate() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/SellmeijerCalculatorStub.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/SellmeijerCalculatorStub.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/SellmeijerCalculatorStub.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,35 @@ +using System.Collections.Generic; +using Ringtoets.Piping.Calculation.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.SubCalculator +{ + public class SellmeijerCalculatorStub : ISellmeijerCalculator { + public double BeddingAngle { get; set; } + public double D70 { get; set; } + public double D70Mean { get; set; } + public double DAquifer { get; set; } + public double DarcyPermeability { get; set; } + public double DTotal { get; set; } + public double GammaSubParticles { get; set; } + public double Gravity { get; set; } + public double HExit { get; set; } + public double HRiver { get; set; } + public double KinematicViscosityWater { get; set; } + public double ModelFactorPiping { get; set; } + public double Rc { get; set; } + public double SeepageLength { get; set; } + public double VolumetricWeightOfWater { get; set; } + public double WhitesDragCoefficient { get; set; } + public double Zp { get; private set; } + public double FoSp { get; private set; } + public void Calculate() + { + throw new System.NotImplementedException(); + } + + public List Validate() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/TestPipingSubCalculatorFactory.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/TestPipingSubCalculatorFactory.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/TestPipingSubCalculatorFactory.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,40 @@ +using Ringtoets.Piping.Calculation.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.SubCalculator +{ + /// + /// This class allows for retrieving the created sub calculators, so that + /// tests can be performed upon them. + /// + public class TestPipingSubCalculatorFactory : IPipingSubCalculatorFactory + { + public IUpliftCalculator CreateUpliftCalculator() + { + LastCreatedUpliftCalculator = new UpliftCalculatorStub(); + return LastCreatedUpliftCalculator; + } + + public IHeaveCalculator CreateHeaveCalculator() + { + LastCreatedHeaveCalculator = new HeaveCalculatorStub(); + return LastCreatedHeaveCalculator; + } + + public ISellmeijerCalculator CreateSellmeijerCalculator() + { + LastCreatedSellmeijerCalculator = new SellmeijerCalculatorStub(); + return LastCreatedSellmeijerCalculator; + } + + public IEffectiveThicknessCalculator CreateEffectiveThicknessCalculator() + { + LastCreatedEffectiveThicknessCalculator = new EffectiveThicknessCalculatorStub(); + return LastCreatedEffectiveThicknessCalculator; + } + + public EffectiveThicknessCalculatorStub LastCreatedEffectiveThicknessCalculator { get; private set; } + public UpliftCalculatorStub LastCreatedUpliftCalculator { get; private set; } + public SellmeijerCalculatorStub LastCreatedSellmeijerCalculator { get; private set; } + public HeaveCalculatorStub LastCreatedHeaveCalculator { get; private set; } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/UpliftCalculatorStub.cs =================================================================== diff -u --- Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/UpliftCalculatorStub.cs (revision 0) +++ Ringtoets/Piping/test/Ringtoets.Piping.Calculation.TestUtil/SubCalculator/UpliftCalculatorStub.cs (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -0,0 +1,27 @@ +using System.Collections.Generic; +using Ringtoets.Piping.Calculation.SubCalculator; + +namespace Ringtoets.Piping.Calculation.TestUtil.SubCalculator +{ + public class UpliftCalculatorStub : IUpliftCalculator { + public double EffectiveStress { get; set; } + public double HExit { get; set; } + public double HRiver { get; set; } + public double ModelFactorUplift { get; set; } + public double PhiExit { get; set; } + public double PhiPolder { get; set; } + public double RExit { get; set; } + public double VolumetricWeightOfWater { get; set; } + public double Zu { get; private set; } + public double FoSu { get; private set; } + public void Calculate() + { + throw new System.NotImplementedException(); + } + + public List Validate() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Properties/AssemblyInfo.cs =================================================================== diff -u -r0bfd1f4e2a179c8575045e5af70dce2930665626 -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 0bfd1f4e2a179c8575045e5af70dce2930665626) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -8,9 +8,9 @@ [assembly: AssemblyTitle("Ringtoets.Piping.Data.TestUtil.Test")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyCompany("Deltares")] [assembly: AssemblyProduct("Ringtoets.Piping.Data.TestUtil.Test")] -[assembly: AssemblyCopyright("Copyright © Microsoft 2016")] +[assembly: AssemblyCopyright("Copyright © Deltares 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Ringtoets.Piping.Data.TestUtil.Test.csproj =================================================================== diff -u -rdd7a5cfb0343fa2350b4143232b94cbba37612e9 -rbbca58832f24a62d39dc744c2db663ed696cfac1 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Ringtoets.Piping.Data.TestUtil.Test.csproj (.../Ringtoets.Piping.Data.TestUtil.Test.csproj) (revision dd7a5cfb0343fa2350b4143232b94cbba37612e9) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil.Test/Ringtoets.Piping.Data.TestUtil.Test.csproj (.../Ringtoets.Piping.Data.TestUtil.Test.csproj) (revision bbca58832f24a62d39dc744c2db663ed696cfac1) @@ -3,7 +3,7 @@ Debug - AnyCPU + x86 {35B78215-420B-4D7D-9959-9E9010601200} Library Properties