Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can this test fail?

    [TestMethod]
    public void Get_Code()
    {
        var expected = new List<int>();
        expected.Add(100);
        expected.Add(400);
        expected.Add(200);
        expected.Add(900);
        expected.Add(2300);
        expected.Add(1900);

        var actual = new List<int>();
        actual.Add(100);
        actual.Add(400);
        actual.Add(200);
        actual.Add(900);
        actual.Add(2300);
        actual.Add(1900);

        Assert.AreEqual(expected, actual); //AreSame(expected, actual) and IsTrue(expected.Equals(actual))  fails too
    }
share|improve this question

2 Answers

up vote 16 down vote accepted

EDIT: To make assertions about collections, you should use CollectionAssert:

CollectionAssert.AreEqual(expected, actual);

List<T> doesn't override Equals, so if Assert.AreEqual just calls Equals, it will end up using reference equality.

share|improve this answer

I guess this will help

Assert.IsTrue(expected.SequenceEqual(actual));
share|improve this answer
That was my fall-back too, but I'd hope that CollectionAssert would provide more helpful failure messages. – Jon Skeet Jun 15 '12 at 17:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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