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

Jean-Noel Rouvignac
19.57.2014 014948703950fc6c4ddbe1c9cf126e302d70a6f7
Fixed comments / javadocs.
2 files modified
9 ■■■■■ changed files
opendj-core/src/test/java/org/forgerock/opendj/ldap/DNTestCase.java 6 ●●●●● patch | view | raw | blame | history
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/AbstractSubstringMatchingRuleImplTest.java 3 ●●●● patch | view | raw | blame | history
opendj-core/src/test/java/org/forgerock/opendj/ldap/DNTestCase.java
@@ -313,7 +313,7 @@
    /**
     * Superior test data provider.
     *
     * @return The array of superior and subordindate DN Strings.
     * @return The array of superior and subordinate DN Strings.
     */
    @DataProvider(name = "createSuperiorTestData")
    public Object[][] createSuperiorTestData() {
@@ -774,9 +774,7 @@
        assertEquals(dn.isSubordinateOrEqualTo(other), e, sub + " isSubordinateOf " + base);
    }
    /**
     * Tests the supeiror dns.
     */
    /** Tests the superior dns. */
    @Test(dataProvider = "createSuperiorTestData")
    public void testSuperiorDN(final String base, final String sub, final boolean e)
            throws Exception {
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/AbstractSubstringMatchingRuleImplTest.java
@@ -175,8 +175,9 @@
            { "this is a string", "string*a*is*this", ConditionResult.FALSE },
            { "this is a string", "*\\00", ConditionResult.FALSE },
            { "this is a string", gen() + "*", ConditionResult.FALSE },
            // initial longer than value
            // initial substring longer than value
            { "tt", "this*", ConditionResult.FALSE },
            // final substring longer than value
            { "tt", "*this", ConditionResult.FALSE },
        };
    }