This documentation is archived and is not being maintained.
Assert.AreEqual Method (String, String, Boolean)
Visual Studio 2008
Verifies that two specified strings are equal, ignoring case or not as specified. The assertion fails if they are not equal.
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Parameters
- expected
- Type: System.String
- actual
- Type: System.String
- ignoreCase
- Type: System.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: