opendj-core/src/test/java/org/forgerock/opendj/ldap/AttributesTestCase.java
File was renamed from opendj-core/src/test/java/org/forgerock/opendj/ldap/TypesTestCase.java @@ -32,13 +32,10 @@ import org.testng.annotations.Test; /** * An abstract class that all types unit tests should extend. A type represents * the classes found directly under the package org.forgerock.opendj.ldap. * Tests the Attributes class. */ @Test(groups = { "precommit", "types", "sdk" }) @SuppressWarnings("javadoc") public class TypesTestCase extends SdkTestCase { public class AttributesTestCase extends SdkTestCase { /** * Data provider for attribute descriptions. * opendj-core/src/test/java/org/forgerock/opendj/ldap/RDNTestCase.java
@@ -45,7 +45,7 @@ * {@link org.forgerock.opendj.ldap.RDN} class. */ @SuppressWarnings("javadoc") public final class RDNTestCase extends TypesTestCase { public final class RDNTestCase extends SdkTestCase { // Domain component attribute type. private static final AttributeType ATTR_TYPE_DC; opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/DistinguishedNameEqualityMatchingRuleTest.java
@@ -27,7 +27,6 @@ package org.forgerock.opendj.ldap.schema; import static org.forgerock.opendj.ldap.schema.SchemaConstants.EMR_DN_OID; import static org.testng.Assert.assertEquals; import org.forgerock.opendj.ldap.ByteString; @@ -183,7 +182,7 @@ } protected MatchingRule getRule() { return Schema.getCoreSchema().getMatchingRule(EMR_DN_OID); return CoreSchema.getDistinguishedNameMatchingRule(); } /**