From bb54db34a462f81711327ea34e3c2d6302a96a05 Mon Sep 17 00:00:00 2001 From: adamcogx Date: Wed, 9 Oct 2013 15:31:17 -0300 Subject: [PATCH] Update AggregateRootMappedByExpressionTests.cs Again, naming of event handlers suggested incorrect visibility. --- .../Domain/AggregateRootMappedByExpressionTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/src/Ncqrs.Tests/Domain/AggregateRootMappedByExpressionTests.cs b/Framework/src/Ncqrs.Tests/Domain/AggregateRootMappedByExpressionTests.cs index 73efa1d0..50c77d8c 100644 --- a/Framework/src/Ncqrs.Tests/Domain/AggregateRootMappedByExpressionTests.cs +++ b/Framework/src/Ncqrs.Tests/Domain/AggregateRootMappedByExpressionTests.cs @@ -47,12 +47,12 @@ public virtual void OnEventForPublicMethod(EventForPublicMethod e) OnEventForPublicMethodInvokedCount++; } - public virtual void OnEventForProtectedMethod(EventForProtectedMethod e) + protected virtual void OnEventForProtectedMethod(EventForProtectedMethod e) { OnEventForProtectedMethodInvokeCount++; } - public virtual void OnEventForPrivateMethod(EventForPrivateMethod e) + private virtual void OnEventForPrivateMethod(EventForPrivateMethod e) { OnEventForPrivateMethodInvokeCount++; }