BooLangStudioSpecs.StringParsing.ExcludeStringMatcherTests.DoesntFindAMatchIfThereIsntOne C# (CSharp) Méthode

DoesntFindAMatchIfThereIsntOne() private méthode

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

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