I'm working on a DAL method that uses an ORDER BY clause in a SELECT. The return value from the method is an IEnumerable<T>, where T is a class that encapsulates a domain entity, and the sort order would be based on one of the properties of this class, namely, "Priority." It's important that this ORDER BY works, of course, so I want to write a sort verification into the unit test for this method. Does anyone have a quick and simple algorithm for testing the order of an IEnumerable<T> based on one of the properties of T? Is there something LINQ-y that I can use?
var items = repository.GetItems(true); //true tells it to use the ORDER BY
items.ToList().ForEach(i => Assert.IsTrue(??What happens here??));
Thanks in advance.

int x = 2, y = 2, z = x + yhasAssert.IsTrue(z == 4)'succeed are you? You should unit test the behavior of your public methods and nothing more. So if the expected behavior ofrepository.GetItems(true)returns an ordered list of items, then test that. But don't test thatitems.OrderBy(x => x, new YourComparer())does indeed sort the list. However, do unit test thatYourComparerdoes indeed compare correctly. – Jason Nov 4 at 21:01