Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ProjectCreateExtensionsTest.cs =================================================================== diff -u -r71123d9c364c97a5ef2eec81acd1bf877a1297b0 -rae6f0c6b534ca650e160ae6d9c0bc90369d25c68 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ProjectCreateExtensionsTest.cs (.../ProjectCreateExtensionsTest.cs) (revision 71123d9c364c97a5ef2eec81acd1bf877a1297b0) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ProjectCreateExtensionsTest.cs (.../ProjectCreateExtensionsTest.cs) (revision ae6f0c6b534ca650e160ae6d9c0bc90369d25c68) @@ -32,7 +32,7 @@ public class ProjectCreateExtensionsTest { [Test] - public void Create_WithoutCollector_ThrowsArgumentNullException() + public void Create_WithoutPersistenceRegistry_ThrowsArgumentNullException() { // Setup var project = new Project(); @@ -42,7 +42,7 @@ // Assert var parameterName = Assert.Throws(test).ParamName; - Assert.AreEqual("collector", parameterName); + Assert.AreEqual("registry", parameterName); } [Test] @@ -54,10 +54,10 @@ { Description = testdescription }; - var collector = new PersistenceRegistry(); + var registry = new PersistenceRegistry(); // Call - var entity = project.Create(collector); + var entity = project.Create(registry); // Assert Assert.NotNull(entity); @@ -75,10 +75,10 @@ new AssessmentSection(AssessmentSectionComposition.Dike) } }; - var collector = new PersistenceRegistry(); + var registry = new PersistenceRegistry(); // Call - var entity = project.Create(collector); + var entity = project.Create(registry); // Assert Assert.AreEqual(1, entity.AssessmentSectionEntities.Count);