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

IndexOf_NullInStrings() private method

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