This documentation is archived and is not being maintained.

Assert.AreEqual Method (String, String, Boolean)

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)

No code example is currently available or this language may not be supported.

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.

ExceptionCondition
AssertFailedException

expected is not equal to actual.

The invariant culture is used for the comparison.

Show: