What is the difference between Assert.AreEqual and Assert.AreSame?
Assert.AreEqual(a, b)
is the same as Assert.IsTrue(Object.Equals(a, b))
Assert.AreSame(a, b)
is the same as Assert.IsTrue(Object.ReferenceEquals(a, b))
(the only reason I knew is I just figured it out myself a few hours ago today because I needed to do a Assert.IsTrue(Object.ReferenceEquals(a,b))
and thought "I wonder if there is a better way to do this")