UserStory anotherStory = newUserStory(iteration);
anotherStory.setName("zzzz"); //second in alphabetical order
anotherStory.setPriority(1); //first in priority order
Task anotherTask = newTask(anotherStory);
anotherTask.setName("zzz task");
source = new IterationDataSource(iteration, session);
assertFieldValues(anotherStory, anotherTask);
assertFieldValues(story, task);
assertFalse("next", source.next());
}