Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -rff47dc9d3989152e8793676ec3e8375fe6e06fd7 -r1e9309149f9387c4e8b10f6c5f429797220b0ef8 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision ff47dc9d3989152e8793676ec3e8375fe6e06fd7) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 1e9309149f9387c4e8b10f6c5f429797220b0ef8) @@ -330,6 +330,14 @@ Assert.AreEqual(expectedSection.AssessmentLayerOne, actualSection.AssessmentLayerOne); Assert.AreEqual(expectedSection.AssessmentLayerThree, actualSection.AssessmentLayerThree); + if (expectedSection.Calculation == null) + { + Assert.IsNull(actualSection.Calculation); + } + else + { + AssertGrassCoverErosionInwardsCalculation(expectedSection.Calculation, actualSection.Calculation); + } } }