Assert.Equals is just the Equals method inherited from object. It has nothing to do with unit testing, and in fact, has no use.
To be more precise, Assert.Equals is exactly the same as Object.Equals. Object.Equals has a use.
However, if you're using Assert.Equals, then you're probably confusing it with Assert.AreEqual, and you want to stop using it.