This documentation is archived and is not being maintained.
Assert.AreEqual Method (String, String, Boolean)
Visual Studio 2013
Verifies that two specified strings are equal, ignoring case or not as specified. The assertion fails if they are not equal.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Parameters
- expected
- Type: String
The first string to compare. This is the string the unit test expects.
- actual
- Type: String
The second string to compare. This is the string the unit test produced.
- ignoreCase
- Type: Boolean
A Boolean value that indicates a case-sensitive or insensitive comparison. true indicates a case-insensitive comparison.
| Exception | Condition |
|---|---|
| AssertFailedException | expected is not equal to actual. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Show: