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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/tests/unit-tests-testng/src/org/opends/sdk/schema/CaseExactIA5EqualityMatchingRuleTest.java
@@ -38,8 +38,7 @@
/**
 * Test the CaseExactIA5EqualityMatchingRule.
 */
public class CaseExactIA5EqualityMatchingRuleTest extends
    MatchingRuleTest
public class CaseExactIA5EqualityMatchingRuleTest extends MatchingRuleTest
{
  /**
@@ -61,12 +60,10 @@
  @DataProvider(name = "matchingrules")
  public Object[][] createMatchingRuleTest()
  {
    return new Object[][] {
        { "12345678", "12345678", ConditionResult.TRUE },
    return new Object[][] { { "12345678", "12345678", ConditionResult.TRUE },
        { "ABC45678", "ABC45678", ConditionResult.TRUE },
        { "ABC45678", "abc45678", ConditionResult.FALSE },
        { "\u0020foo\u0020bar\u0020\u0020", "foo bar",
            ConditionResult.TRUE },
        { "\u0020foo\u0020bar\u0020\u0020", "foo bar", ConditionResult.TRUE },
        { "test\u00AD\u200D", "test", ConditionResult.TRUE },
        { "foo\u000Bbar", "foo\u0020bar", ConditionResult.TRUE },
        { "foo\u070Fbar", "foobar", ConditionResult.TRUE },
@@ -82,8 +79,7 @@
  @Override
  protected MatchingRule getRule()
  {
    return Schema.getCoreSchema().getMatchingRule(
        EMR_CASE_EXACT_IA5_OID);
    return Schema.getCoreSchema().getMatchingRule(EMR_CASE_EXACT_IA5_OID);
  }
}