/**
   * Tests the change operation type is correct.
   *
   * @throws Exception If the test failed unexpectedly.
   */
  @Test
  public void testChangeOperationType() throws Exception {
    DeleteChangeRecordEntry entry = new DeleteChangeRecordEntry(DN.nullDN());

    Assert.assertEquals(entry.getChangeOperationType(), ChangeOperationType.DELETE);
  }