import com.google.common.base.Optional;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.Multimap;
+import com.google.common.collect.Ordering;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
private final Multimap<Sone, Post> sonePosts = create();
private final Collection<Sone> sones = newHashSet();
+ private final Multimap<Post, PostReply> postReplies = create();
public final Database database;
public final Core core;
when(post.getSone()).thenReturn(sone);
when(database.getPost(eq(id))).thenReturn(of(post));
sonePosts.put(sone, post);
+ when(post.getReplies()).then(new Answer<List<PostReply>>() {
+ @Override
+ public List<PostReply> answer(InvocationOnMock invocation) throws Throwable {
+ return Ordering.from(Reply.TIME_COMPARATOR).sortedCopy(postReplies.get(post));
+ }
+ });
return post;
}