How does the Assert.AreEqual(object, object) method (in the namespace Microsoft.VisualStudio.TestTools.UnitTesting) determine whether the parameters are equal? Does it make use of the Object.Equals(object, object) method (in the System namespace)?
How does the Assert.AreEqual(object, object) method (in the namespace Microsoft.VisualStudio.TestTools.UnitTesting ) determine whether the
Share
using reflector you can see that it does indeed use Object.Equals.