Automation.UI.Tree.Matchers.ContainsMatcher.IsMatch C# (CSharp) Method

IsMatch() public method

Checks to see if the actual value contains the specified expected value.
public IsMatch ( string actual, string expected ) : bool
actual string The actual value.
expected string The expected start value.
return bool
        public override bool IsMatch(string actual, string expected)
        {
            WriteTrace(actual, expected);

            return actual.Contains(expected);
        }
ContainsMatcher