// -----------------------------------------------------------------------
 public void testCopy() {
   MutableInterval test = new MutableInterval(123L, 456L, COPTIC_PARIS);
   MutableInterval cloned = test.copy();
   assertEquals(test, cloned);
   assertNotSame(test, cloned);
 }