Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -rb190a14336e0d8fe9aec34e81a68194081c76155 -r9754fefbba93c8c3c4e229cd4d59259bf4462882 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision b190a14336e0d8fe9aec34e81a68194081c76155) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 9754fefbba93c8c3c4e229cd4d59259bf4462882) @@ -901,7 +901,7 @@ } private static void AssertStabilityPointStructures(ObservableList expectedStabilityPointStructures, - ObservableList actualStabilityPointStructures) + ObservableList actualStabilityPointStructures) { Assert.AreEqual(expectedStabilityPointStructures.Count, actualStabilityPointStructures.Count); for (int i = 0; i < expectedStabilityPointStructures.Count; i++) @@ -1035,6 +1035,15 @@ Assert.AreEqual(expectedCalculation.Comments, actualCalculation.Comments); AssertHeightStructuresInput(expectedCalculation.InputParameters, actualCalculation.InputParameters); + + if (expectedCalculation.HasOutput) + { + AssertProbabilityAssessmentOutput(expectedCalculation.Output, actualCalculation.Output); + } + else + { + Assert.IsFalse(actualCalculation.HasOutput); + } } private static void AssertHeightStructuresInput(HeightStructuresInput expectedInput, HeightStructuresInput actualInput)