mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
06.25.2016 d89c47e7cb1b3c9181e25582539aac1dedb46099
opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java
@@ -243,7 +243,7 @@
         DirectoryServer.getPluginConfigManager().getRegisteredPlugin(dn);
    plugin.doLDIFImport(importConfig, e);
    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
  }
@@ -284,7 +284,7 @@
         DirectoryServer.getPluginConfigManager().getRegisteredPlugin(dn);
    plugin.doLDIFImport(importConfig, e);
    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
  }
@@ -303,7 +303,7 @@
                                      "objectClass: top",
                                      "objectClass: device",
                                      "cn: test");
    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
  }
@@ -325,6 +325,6 @@
                                      "objectClass: device",
                                      "cn: test",
                                      "entryUUID: " + UUID.randomUUID());
    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
  }
}