List<WaveletOperation> server = CollectionUtils.newArrayList();
server.add(SERVER_UTIL.insert(2, "1", 0, null));
server.add(SERVER_UTIL.insert(1, "2", 2, null));
DeltaPair pair = new DeltaPair(client, server);
pair = pair.transform();
// Expect the transformation of the inserts are correct. If client and server
// have the same insert point, client op is transformed to the left of the server op.
// Expect client inserts ".A..B."
assertEquals(2, pair.getClient().size());