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).
|
I know how to check that a collection is ordered by some property:
How can I assert that actual contains the elements (1,2,5,3,4) in this specific order (without writing a custom comparer).
| ||||
|
feedback
|
|
Use
This checks that the items are equal and are in the same order. | |||||||
|
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 | |||
|
feedback
|