assertEquals(WAVELET_NAME.waveletId, obs.getWaveletId());
assertEquals(CollectionUtils.immutableSet(BOB, JOE), obs.getParticipants());
assertEquals(docs.keySet(), obs.getDocumentIds());
for (Map.Entry<String, DocOp> d : docs.entrySet()) {
BlipData blip = obs.getDocument(d.getKey());
WaveletData wavelet = blip.getWavelet();
assertEquals(WAVELET_NAME.waveId, wavelet.getWaveId());
assertEquals(WAVELET_NAME.waveletId, wavelet.getWaveletId());
assertEquals(d.getKey(), blip.getId());
assertNotNull(blip.getAuthor());
assertEquals(0L, blip.getLastModifiedTime());
assertEquals(-1, blip.getLastModifiedVersion());
assertTrue(blip.getContributors().isEmpty());
assertOpEquals(d.getValue(), blip.getContent().asOperation());
try {
blip.addContributor(JOE);
fail("blips from DataUtil.fromCoreWaveletData() are immutable");
} catch (UnsupportedOperationException expected) {
}
}