Aspects.Logging.Tests.ExcludeTests.WhenAppliedToClassWithExcludePropertiesAndConstructorsFlagShouldNotLogPropertiesAndConstructor C# (CSharp) Method

WhenAppliedToClassWithExcludePropertiesAndConstructorsFlagShouldNotLogPropertiesAndConstructor() private method

        public void WhenAppliedToClassWithExcludePropertiesAndConstructorsFlagShouldNotLogPropertiesAndConstructor()
        {
            // act
            PersonExcludePropertyConstructors personExcludePropertyConstructors = new PersonExcludePropertyConstructors
            {
                Name = Guid.NewGuid().ToString()
            };
            personExcludePropertyConstructors.Name.Should().NotBeNullOrWhiteSpace();

            // assert
            _logger.DebugCallCount.Should()
                .Be(0, "because we do not hit the Debug method for constructors and properties");
        }
    }