BooLangStudioSpecs.StringParsing.ExcludeStringMatcherTests.DoesntFindAMatchIfThereIsntOne C# (CSharp) Method

DoesntFindAMatchIfThereIsntOne() private method

private DoesntFindAMatchIfThereIsntOne ( ) : void
return void
        public void DoesntFindAMatchIfThereIsntOne()
        {
            string source = "SomeString";
            var matcher = new ExcludeStringMatcher(source);

            Assert.Null(matcher.FindNextIndex('!'));
        }