verify(seen, never()).startDiffSuppression();
verify(seen, never()).stopDiffSuppression();
}
public void testDynamicFreshBlipsAreSuppressed() {
Conversation conv = wave.createRoot();
target.install();
// Instrument first.
MockDoc doc = mock(MockDoc.class);
when(doc.isCompleteDiff()).thenReturn(true, false);
when(documents.get(any(ConversationBlip.class))).thenReturn(doc);
conv.getRootThread().appendBlip();
verify(doc).startDiffSuppression();
verify(doc, never()).stopDiffSuppression();
}