BooLangStudioSpecs.StringParsing.ExcludeStringMatcherTests.DoesntFindAMatchIfThereIsntOne C# (CSharp) 메소드

DoesntFindAMatchIfThereIsntOne() 개인적인 메소드

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

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