Affecto.Patterns.Specification.Tests.RegexSpecificationTests.IsNotSatisfiedWhenRegexIsNotMatched C# (CSharp) Method

IsNotSatisfiedWhenRegexIsNotMatched() private method

private IsNotSatisfiedWhenRegexIsNotMatched ( ) : void
return void
        public void IsNotSatisfiedWhenRegexIsNotMatched()
        {
            sut = new RegexSpecification(RegexPattern, ReasonForDissatisfaction);

            Assert.IsFalse(sut.IsSatisfiedBy("A"));
        }