Overload | Description |
---|---|
NotBeInDescendingOrder<TSelector>(Expression<Func<T,TSelector>>,String,Object[]) | Asserts that a collection is not ordered in descending order according to the value of the specified propertyExpression. |
NotBeInDescendingOrder(IComparer<T>,String,Object[]) | Asserts that a collection is not ordered in descending order according to the value of the specified IComparer implementation. |
NotBeInDescendingOrder<TSelector>(Expression<Func<T,TSelector>>,IComparer<TSelector>,String,Object[]) | Asserts that a collection not is ordered in descending order according to the value of the specified propertyExpression and IComparer implementation. |
NotBeInDescendingOrder(String,Object[]) | Asserts the current collection does not have all elements in descending order. Elements are compared using their System.IComparable.CompareTo(System.Object) implementation. |
NotBeInDescendingOrder(Func<T,T,Int32>,String,Object[]) | Asserts that a collection is not ordered in descending order according to the provided lambda expression. |