Fisheye: Tag 75a425748de07eae53b5a915c211733a9df6f4a0 refers to a dead (removed) revision in file `Ringtoets/Integration/src/Ringtoets.Integration.Service/Exceptions/AssessmentSectionProviderException.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Integration/src/Ringtoets.Integration.Service/Exceptions/LoadAssessmentSectionException.cs
===================================================================
diff -u -r5ed116034cc1326d67177b904b2a7257046da7d0 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/src/Ringtoets.Integration.Service/Exceptions/LoadAssessmentSectionException.cs (.../LoadAssessmentSectionException.cs) (revision 5ed116034cc1326d67177b904b2a7257046da7d0)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Service/Exceptions/LoadAssessmentSectionException.cs (.../LoadAssessmentSectionException.cs) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -25,7 +25,7 @@
namespace Ringtoets.Integration.Service.Exceptions
{
///
- /// The exception that is thrown when something went wrong while loading assessment sections.
+ /// Exception thrown when something went wrong when loading assessment sections.
///
[Serializable]
public class LoadAssessmentSectionException : Exception
Index: Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/ILoadAssessmentSectionService.cs
===================================================================
diff -u -r51bdd6249eff8392753604a4dd04369ab28cf460 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/ILoadAssessmentSectionService.cs (.../ILoadAssessmentSectionService.cs) (revision 51bdd6249eff8392753604a4dd04369ab28cf460)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/ILoadAssessmentSectionService.cs (.../ILoadAssessmentSectionService.cs) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -35,8 +35,8 @@
///
/// The file path to read the assessment sections from.
/// A collection of .
- /// Thrown if something went wrong
- /// when providing the assessment sections.
+ /// Thrown if something went wrong
+ /// when loading the assessment sections.
IEnumerable LoadAssessmentSections(string filePath);
}
}
\ No newline at end of file
Index: Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/LoadAssessmentSectionService.cs
===================================================================
diff -u -r51bdd6249eff8392753604a4dd04369ab28cf460 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/LoadAssessmentSectionService.cs (.../LoadAssessmentSectionService.cs) (revision 51bdd6249eff8392753604a4dd04369ab28cf460)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Service/Merge/LoadAssessmentSectionService.cs (.../LoadAssessmentSectionService.cs) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -63,12 +63,12 @@
string exceptionMessage = e.Message;
log.Error(exceptionMessage, e.InnerException);
- throw new AssessmentSectionProviderException(exceptionMessage, e);
+ throw new LoadAssessmentSectionException(exceptionMessage, e);
}
if (openedProject == null)
{
- throw new AssessmentSectionProviderException();
+ throw new LoadAssessmentSectionException();
}
return openedProject.AssessmentSections;
Index: Ringtoets/Integration/src/Ringtoets.Integration.Service/Ringtoets.Integration.Service.csproj
===================================================================
diff -u -rfb057a8a186a7ba22edc23928222e4efd7ee8cc9 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/src/Ringtoets.Integration.Service/Ringtoets.Integration.Service.csproj (.../Ringtoets.Integration.Service.csproj) (revision fb057a8a186a7ba22edc23928222e4efd7ee8cc9)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Service/Ringtoets.Integration.Service.csproj (.../Ringtoets.Integration.Service.csproj) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -18,7 +18,7 @@
-
+
Fisheye: Tag 75a425748de07eae53b5a915c211733a9df6f4a0 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Exceptions/AssessmentSectionProviderExceptionTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionServiceTest.cs
===================================================================
diff -u -r51bdd6249eff8392753604a4dd04369ab28cf460 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionServiceTest.cs (.../LoadAssessmentSectionServiceTest.cs) (revision 51bdd6249eff8392753604a4dd04369ab28cf460)
+++ Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionServiceTest.cs (.../LoadAssessmentSectionServiceTest.cs) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -105,7 +105,7 @@
}
[Test]
- public void LoadAssessmentSections_LoadedProjectNull_ThrowsAssessmentSectionProviderException()
+ public void LoadAssessmentSections_LoadedProjectNull_ThrowsLoadAssessmentSectionException()
{
// Setup
var mocks = new MockRepository();
@@ -121,12 +121,12 @@
TestDelegate call = () => provider.LoadAssessmentSections(string.Empty);
// Assert
- Assert.Throws(call);
+ Assert.Throws(call);
mocks.VerifyAll();
}
[Test]
- public void LoadAssessmentSections_LoadingProjectThrowsException_ThrowsAssessmentSectionProviderExceptionAndLogsError()
+ public void LoadAssessmentSections_LoadingProjectThrowsException_ThrowsLoadAssessmentSectionExceptionAndLogsError()
{
// Setup
const string exceptionMessage = "StorageException";
@@ -141,7 +141,7 @@
var provider = new LoadAssessmentSectionService(storeProject);
- AssessmentSectionProviderException exception = null;
+ LoadAssessmentSectionException exception = null;
// Call
Action call = () =>
@@ -150,7 +150,7 @@
{
provider.LoadAssessmentSections(string.Empty);
}
- catch (AssessmentSectionProviderException e)
+ catch (LoadAssessmentSectionException e)
{
exception = e;
}
Index: Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionsActivityTest.cs
===================================================================
diff -u -r51bdd6249eff8392753604a4dd04369ab28cf460 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionsActivityTest.cs (.../LoadAssessmentSectionsActivityTest.cs) (revision 51bdd6249eff8392753604a4dd04369ab28cf460)
+++ Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Merge/LoadAssessmentSectionsActivityTest.cs (.../LoadAssessmentSectionsActivityTest.cs) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -124,7 +124,7 @@
}
[Test]
- public void Run_ProviderReturnsAssessmentSections_SetsActivityStateToExecutedAndSetsAssessmentSections()
+ public void Run_ServiceReturnsAssessmentSections_SetsActivityStateToExecutedAndSetsAssessmentSections()
{
// Setup
IEnumerable assessmentSections = Enumerable.Empty();
@@ -149,14 +149,14 @@
}
[Test]
- public void Run_ProviderThrowsException_SetsActivityStateToFailedAndDoesNotSetAssessmentSections()
+ public void Run_ServiceThrowsException_SetsActivityStateToFailedAndDoesNotSetAssessmentSections()
{
// Setup
var mocks = new MockRepository();
var provider = mocks.StrictMock();
provider.Expect(p => p.LoadAssessmentSections(null))
.IgnoreArguments()
- .Throw(new AssessmentSectionProviderException());
+ .Throw(new LoadAssessmentSectionException());
mocks.ReplayAll();
var owner = new AssessmentSectionsOwner();
Index: Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Ringtoets.Integration.Service.Test.csproj
===================================================================
diff -u -rbdd157e9b19f636d46ce3f3b971ef83a0200e483 -r75a425748de07eae53b5a915c211733a9df6f4a0
--- Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Ringtoets.Integration.Service.Test.csproj (.../Ringtoets.Integration.Service.Test.csproj) (revision bdd157e9b19f636d46ce3f3b971ef83a0200e483)
+++ Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/Ringtoets.Integration.Service.Test.csproj (.../Ringtoets.Integration.Service.Test.csproj) (revision 75a425748de07eae53b5a915c211733a9df6f4a0)
@@ -20,7 +20,7 @@
-
+