vote up 0 vote down star

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).

flag

63% accept rate

1 Answer

vote up 3 vote down check

Use

CollectionAssert.AreEqual(expectedIEnumerable, actualIEnumerable);

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

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

Your Answer

Get an OpenID
or

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