Showing related tags and posts accross the entire site.
-
It was the first time that i used NUnit and i figured out this morning when i was revising some of the tests that in some of them, i was still using Assert.IsTrue(objExpected == objActual) istead of Assert.AreEqual(objExpected, objActual). Although the same constructs will yield the same results, using...