Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/ReadWaveConditionsCalculation.cs
===================================================================
diff -u
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/ReadWaveConditionsCalculation.cs (revision 0)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/ReadWaveConditionsCalculation.cs (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -0,0 +1,30 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets 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 Ringtoets.Common.IO.Readers;
+
+namespace Ringtoets.Revetment.IO.Readers
+{
+ internal class ReadWaveConditionsCalculation : IReadConfigurationItem
+ {
+ public string Name { get; }
+ }
+}
\ No newline at end of file
Fisheye: Tag a0c7229c5e088639649bec9d2d64e0e30bad1d48 refers to a dead (removed) revision in file `Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/ReadWaveConditionsInput.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/WaveConditionsInputConfigurationReader.cs
===================================================================
diff -u -rb84f4b9c37b5ce0bd49b65269c4984c0bc1543e8 -ra0c7229c5e088639649bec9d2d64e0e30bad1d48
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/WaveConditionsInputConfigurationReader.cs (.../WaveConditionsInputConfigurationReader.cs) (revision b84f4b9c37b5ce0bd49b65269c4984c0bc1543e8)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Readers/WaveConditionsInputConfigurationReader.cs (.../WaveConditionsInputConfigurationReader.cs) (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -31,9 +31,9 @@
{
///
/// This class reads a wave conditions configuration from XML and creates a collection of corresponding
- /// , typically containing one or more .
+ /// , typically containing one or more .
///
- internal class WaveConditionsInputConfigurationReader : ConfigurationReader
+ internal class WaveConditionsInputConfigurationReader : ConfigurationReader
{
private const string hydraulicBoundaryLocationSchemaName = "HrLocatieSchema.xsd";
private const string orientationSchemaName = "OrientatieSchema.xsd";
@@ -72,7 +72,7 @@
}
}) {}
- protected override ReadWaveConditionsInput ParseCalculationElement(XElement calculationElement)
+ protected override ReadWaveConditionsCalculation ParseCalculationElement(XElement calculationElement)
{
throw new NotImplementedException();
}
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj
===================================================================
diff -u -rb84f4b9c37b5ce0bd49b65269c4984c0bc1543e8 -ra0c7229c5e088639649bec9d2d64e0e30bad1d48
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision b84f4b9c37b5ce0bd49b65269c4984c0bc1543e8)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -54,7 +54,7 @@
True
Resources.resx
-
+
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/ReadWaveConditionsCalculationTest.cs
===================================================================
diff -u
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/ReadWaveConditionsCalculationTest.cs (revision 0)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/ReadWaveConditionsCalculationTest.cs (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -0,0 +1,41 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets 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 NUnit.Framework;
+using Ringtoets.Common.IO.Readers;
+using Ringtoets.Revetment.IO.Readers;
+
+namespace Ringtoets.Revetment.IO.Test.Readers
+{
+ [TestFixture]
+ public class ReadWaveConditionsCalculationTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var readItem = new ReadWaveConditionsCalculation();
+
+ // Assert
+ Assert.IsInstanceOf(readItem);
+ }
+ }
+}
\ No newline at end of file
Fisheye: Tag a0c7229c5e088639649bec9d2d64e0e30bad1d48 refers to a dead (removed) revision in file `Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/ReadWaveConditionsInputTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/WaveConditionsInputConfigurationReaderTest.cs
===================================================================
diff -u -r3fbce64e43a4c8bcd6928e9f5df916a0bc47c8dd -ra0c7229c5e088639649bec9d2d64e0e30bad1d48
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/WaveConditionsInputConfigurationReaderTest.cs (.../WaveConditionsInputConfigurationReaderTest.cs) (revision 3fbce64e43a4c8bcd6928e9f5df916a0bc47c8dd)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Readers/WaveConditionsInputConfigurationReaderTest.cs (.../WaveConditionsInputConfigurationReaderTest.cs) (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -21,6 +21,7 @@
using System.Collections.Generic;
using System.IO;
+using System.Linq;
using System.Xml.Schema;
using Core.Common.IO.Exceptions;
using Core.Common.TestUtil;
@@ -182,7 +183,7 @@
var reader = new WaveConditionsInputConfigurationReader(filePath);
// Assert
- Assert.IsInstanceOf>(reader);
+ Assert.IsInstanceOf>(reader);
}
[Test]
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj
===================================================================
diff -u -rb84f4b9c37b5ce0bd49b65269c4984c0bc1543e8 -ra0c7229c5e088639649bec9d2d64e0e30bad1d48
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision b84f4b9c37b5ce0bd49b65269c4984c0bc1543e8)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision a0c7229c5e088639649bec9d2d64e0e30bad1d48)
@@ -54,7 +54,7 @@
-
+