Bytes2you.Validation.UnitTests.ValidationPredicates.StringPredicates.StringNotRegexMatchValidationPredicateTests.Constructors_Should.ThrowArgumentNullException_WhenPatternArgumentIsNull C# (CSharp) Method

ThrowArgumentNullException_WhenPatternArgumentIsNull() private method

        public void ThrowArgumentNullException_WhenPatternArgumentIsNull()
        {
            // Act & Assert.
            Ensure.ArgumentNullExceptionIsThrown(() =>
            {
                StringNotRegexMatchValidationPredicate validationPredicate = new StringNotRegexMatchValidationPredicate(null);
            }, "pattern");
        }