Aspects.Logging.Tests.LoggingAspectBaseFunctionalityTests.WhenCallingWorkingMethodShouldHitDebug3Times C# (CSharp) 메소드

WhenCallingWorkingMethodShouldHitDebug3Times() 개인적인 메소드

private WhenCallingWorkingMethodShouldHitDebug3Times ( ) : void
리턴 void
        public void WhenCallingWorkingMethodShouldHitDebug3Times()
        {
            // act
            SomeMethod(1, null);

            // assert
            _logger.DebugCallCount.Should().Be(3, "because we only hit the Entry, Success, and Exit methods");
        }