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

3 Answers

up vote 17 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

this test compares a date input, checks if its a leap year, if so, outputs 20 leap years from the inputted date, if not, outputs the NEXT 20 leap years, myTest.Testing refers to the myTest instance which in turn calls the values from a List called Testing containing the calculated values required. part of an exercise I had to do.

[TestMethod]
        public void TestMethod1()
        {
            int testVal = 2012;
            TestClass myTest = new TestClass();
            var expected = new List<int>();
            expected.Add(2012);
            expected.Add(2016);
            expected.Add(2020);
            expected.Add(2024);
            expected.Add(2028);
            expected.Add(2032);
            expected.Add(2036);
            expected.Add(2040);
            expected.Add(2044);
            expected.Add(2048);
            expected.Add(2052);
            expected.Add(2056);
            expected.Add(2060);
            expected.Add(2064);
            expected.Add(2068);
            expected.Add(2072);
            expected.Add(2076);
            expected.Add(2080);
            expected.Add(2084);
            expected.Add(2088);
            var actual = myTest.Testing(2012);
            CollectionAssert.AreEqual(expected, actual);
        }
share|improve this answer

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.