// After making a clone, parallel operations should return the same results.
// If anything under the covers was shared, then parallel operations would
// interfere with each other.
assertEquals(b.allocateId("bar"), a.allocateId("bar"));
assertEquals(b.allocateId("foo"), a.allocateId("foo"));
assertEquals(b.allocateId("foo_0"), a.allocateId("foo_0"));
}
}