System.Tests.StringTests.Contains C# (CSharp) 메소드

Contains() 개인적인 메소드

private Contains ( string s, string value, bool expected ) : void
s string
value string
expected bool
리턴 void
        public static void Contains(string s, string value, bool expected)
        {
            Assert.Equal(expected, s.Contains(value));
        }
StringTests