up vote 1 down vote favorite
share [g+] share [fb]

I know how to check that a collection is ordered by some property:

Assert.That(actual, Is.Ordered.By("Foo"));

How can I assert that actual contains the elements (1,2,5,3,4) in this specific order (without writing a custom comparer).

link|improve this question

68% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Use

CollectionAssert.AreEqual(expectedIEnumerable, actualIEnumerable);

This checks that the items are equal and are in the same order.

link|improve this answer
Thanks, forgot about CollectionAssert – ripper234 Jun 9 '09 at 16:04
Having SO around makes me much more lazy regarding googling. – ripper234 Jun 9 '09 at 16:05
No problem, just shows how useful SO is :) – Mark Dickinson Jun 10 '09 at 8:51
feedback

You can write framework agnostic asserts using a library called Should. It also has a very nice fluent syntax which can be used if you like fluent interfaces. I had a blog post related to the same.

http://nileshgule.blogspot.com/2010/11/use-should-assertion-library-to-write.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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