Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructureTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructureTest.cs (.../ClosingStructureTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructureTest.cs (.../ClosingStructureTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -592,9 +592,9 @@ [Test] [TestCaseSource(nameof(StructureCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(ClosingStructure structure, - ClosingStructure otherStructure, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(ClosingStructure structure, + ClosingStructure otherStructure, + bool expectedToBeEqual) { // Call bool isStructureEqualToOther = structure.Equals(otherStructure); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -277,9 +277,9 @@ [Test] [TestCaseSource(nameof(DistributionCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(LogNormalDistribution distribution, - LogNormalDistribution otherDistribution, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(LogNormalDistribution distribution, + LogNormalDistribution otherDistribution, + bool expectedToBeEqual) { // Call bool isDistributionEqualToOther = distribution.Equals(otherDistribution); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -198,9 +198,9 @@ [Test] [TestCaseSource(nameof(DistributionCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(NormalDistribution distribution, - NormalDistribution otherDistribution, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(NormalDistribution distribution, + NormalDistribution otherDistribution, + bool expectedToBeEqual) { // Call bool isDistributionEqualToOther = distribution.Equals(otherDistribution); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -225,9 +225,9 @@ [Test] [TestCaseSource(nameof(DistributionCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(VariationCoefficientLogNormalDistribution distribution, - VariationCoefficientLogNormalDistribution otherDistribution, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(VariationCoefficientLogNormalDistribution distribution, + VariationCoefficientLogNormalDistribution otherDistribution, + bool expectedToBeEqual) { // Call bool isDistributionEqualToOther = distribution.Equals(otherDistribution); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -207,9 +207,9 @@ [Test] [TestCaseSource(nameof(DistributionCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(VariationCoefficientNormalDistribution distribution, - VariationCoefficientNormalDistribution otherDistribution, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(VariationCoefficientNormalDistribution distribution, + VariationCoefficientNormalDistribution otherDistribution, + bool expectedToBeEqual) { // Call bool isDistributionEqualToOther = distribution.Equals(otherDistribution); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/StructureBaseTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/StructureBaseTest.cs (.../StructureBaseTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/StructureBaseTest.cs (.../StructureBaseTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -260,9 +260,9 @@ [Test] [TestCaseSource(nameof(StructureCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(StructureBase structure, - StructureBase otherStructure, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(StructureBase structure, + StructureBase otherStructure, + bool expectedToBeEqual) { // Call bool isStructureEqualToOther = structure.Equals(otherStructure); Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructureTest.cs =================================================================== diff -u -r155f4cb85e35d6ba7629a7440900bc0642410878 -r88d043d47b0976fe2e58c10babb5322b605b16da --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructureTest.cs (.../HeightStructureTest.cs) (revision 155f4cb85e35d6ba7629a7440900bc0642410878) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructureTest.cs (.../HeightStructureTest.cs) (revision 88d043d47b0976fe2e58c10babb5322b605b16da) @@ -448,9 +448,9 @@ [Test] [TestCaseSource(nameof(StructureCombinations))] - public void Equal_DifferentProperty_ReturnsIsEqual(HeightStructure structure, - HeightStructure otherStructure, - bool expectedToBeEqual) + public void Equals_DifferentProperty_ReturnsIsEqual(HeightStructure structure, + HeightStructure otherStructure, + bool expectedToBeEqual) { // Call bool isStructureEqualToOther = structure.Equals(otherStructure);