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

Violette Roche-Montane
04.43.2012 363b7d80aad7e46257e6aeafa688adfe7c7d6c94
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldif/LDIFEntryWriterTestCase.java
@@ -46,6 +46,7 @@
/**
 * This class tests the LDIFEntryWriter functionality.
 */
@SuppressWarnings("javadoc")
public final class LDIFEntryWriterTestCase extends LDIFTestCase {
    /**
@@ -709,12 +710,12 @@
    }
    /**
     * Test to write an entry adding the user friendly Comment TODO
     * Test to write an entry adding the user friendly Comment.
     *
     * @throws Exception
     *             If the test failed unexpectedly.
     */
    @Test
    @Test(enabled = false)
    public void testSetAddUserFriendlyComments() throws Exception {
        final List<String> actual = new ArrayList<String>();
        final LDIFEntryWriter writer = new LDIFEntryWriter(actual);
@@ -724,9 +725,6 @@
        writer.setAddUserFriendlyComments(true);
        writer.writeComment0(comment);
        writer.close();
        // TODO Add a test when the function will be implemented in AbstractLDIFWriter
    }
    /**