System.Tests.StringTests.Contains C# (CSharp) Method

Contains() private method

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