vote up 1 vote down star
1

Hello,

i recently stumbled upon a seemingly weird behavior that Google completely failed to explain.


using Microsoft.VisualStudio.TestTools.UnitTesting;

class TestClass
{
    public override bool Equals(object obj)
    {
    	return true;
    }
}

[TestMethod]
public void TestMethod1()
{
    TestClass t = new TestClass ();
    Assert.AreEqual (t, null); // fails
    Assert.IsTrue (t.Equals (null)); // passes
}

I would expect this test to succeed. However, in Visual Studio 2008 / .NET 3.5 it fails. Is it intended to be like that or is it a bug?

flag

77% accept rate
1  
Since the expected value in NUnit is always first, you're using AreEqual() backwards from convention. I can't tell from the docs if it compares t against null, or null against t, so I would not call a test that relies on that distinction reliable. – Ken Aug 20 at 18:32

5 Answers

vote up 6 vote down check

Your TestClass violates the contract of Object.Equals. Assert.AreEqual is relying on that contract, quite reasonably.

The docs state (in the list of requirements):

  • x.Equals(a null reference (Nothing in Visual Basic)) returns false.
link|flag
vote up 0 vote down

If i get you right, it is actually intended that AreEqual(anythingButNull, null) always return false?

(edit) The reason i wondered is because the test for null, as required by the contract of Equals, is not called when unittesting the class. So because AreEqual relies on the contract, it fails to check if my class also complies with the contract. So i guess i have to use the workaround of Assert.IsFalse(blah.Equals(null)).

link|flag
Yes, exactly a specified in the docs for Object.Equals. – Jon Skeet Jan 20 at 7:50
Yes, because, simply spoken, (!null==null) has to return false. – Peter Jan 20 at 7:55
vote up 1 vote down

No, it's correct - you've initialised t to a new TestClass object, which isn't null, so the assertion fails.

link|flag
vote up 1 vote down

The first test fails. Test if "t" is null, which isn't, because you initialized the t with a new TestClass object.

The second test, passes, because t.Equals always returns true.

If one test fails, the whole TestMethod1 is marked as failed.

link|flag
vote up 3 vote down

When testing for nulls, do not use Assert.AreEqual.

You have to use Assert.IsNull() for that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.