This topic has not yet been rated - Rate this topic

StringAssert.Contains Method (String, String)

Verifies that the first string contains the second string. This method is case sensitive.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
public static void Contains(
	string value,
	string substring
)

Parameters

value
Type: String

The string that is expected to contain substring.

substring
Type: String

The string expected to occur within value.

ExceptionCondition
AssertFailedException

substring is not found in value.

The assertion fails if the substring does not occur within the string.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.