public void TestReversed_Collection_Wraps() { Collection<int> collection = new Collection<int>(); var reversed = collection.Reversed(); Assert.AreSame(collection, reversed.List, "The collection was not wrapped."); }