}
@Test
public void testLimitDescending()
{
ObjectStoreSession oss = ObjectStore.Factory.create().beginSession();
List<Person> people = Lists.newArrayList(oss.find(Person.class).sort("firstName", Find.Sort.Descending).limit(3).now());
assertEquals(3, people.size());
assertEquals(Lists.newArrayList(cWilmaFlintstone, cSallyStruthers, cFredFlintstone), people);
}