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

coulbeck
12.05.2007 727fac5bb20d6050d0ee0b0d9c38af76f98fae0f
Tidy up related to issue #730, which was not valid.
5 files modified
37 ■■■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseExactIA5SubstringMatchingRuleTest.java 7 ●●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseExactSubstringMatchingRuleTest.java 7 ●●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseIgnoreIA5SubstringMatchingRuleTest.java 7 ●●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseIgnoreSubstringMatchingRuleTest.java 7 ●●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringSubstringMatchingRuleTest.java 9 ●●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseExactIA5SubstringMatchingRuleTest.java
@@ -50,9 +50,10 @@
        {"this is a value", new String[] {"value"}, true },
        {"this is a value", new String[] {" "}, true },
        {"this is a value", new String[] {"this", "is", "a", "value"}, true },
       // {"this is a value", new String[] {"this", "this is"}, true },
       // disabled becasue of issue 730
       // {"this is a value", new String[] {"value", "this"}, true },
         // The matching rule requires ordered non overlapping substrings
         // Issue #730 was not valid.
        {"this is a value", new String[] {"value", "this"}, false },
        {"this is a value", new String[] {"this", "this is"}, false },
        {"this is a value", new String[] {"his is", "a val",}, true },
        {"this is a value", new String[] {"not",}, false },
        {"this is a value", new String[] {"THIS",}, false },
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseExactSubstringMatchingRuleTest.java
@@ -50,9 +50,10 @@
        {"this is a value", new String[] {"value"}, true },
        {"this is a value", new String[] {" "}, true },
        {"this is a value", new String[] {"this", "is", "a", "value"}, true },
       // {"this is a value", new String[] {"this", "this is"}, true },
       // disabled becasue of issue 730
       // {"this is a value", new String[] {"value", "this"}, true },
         // The matching rule requires ordered non overlapping substrings.
         // Issue #730 was not valid.
        {"this is a value", new String[] {"value", "this"}, false },
        {"this is a value", new String[] {"this", "this is"}, false },
        {"this is a value", new String[] {"his is", "a val",}, true },
        {"this is a value", new String[] {"not",}, false },
        {"this is a value", new String[] {"THIS",}, false },
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseIgnoreIA5SubstringMatchingRuleTest.java
@@ -54,9 +54,10 @@
        {"this is a value", new String[] {"VALUE"}, true },
        {"this is a value", new String[] {" "}, true },
        {"this is a value", new String[] {"this", "is", "a", "value"}, true },
       // disabled because of issue 730
       // {"this is a value", new String[] {"value", "this"}, true },
       // {"this is a value", new String[] {"this", "this is"}, true },
         // The matching rule requires ordered non overlapping substrings.
         // Issue #730 was not valid.
        {"this is a value", new String[] {"value", "this"}, false },
        {"this is a value", new String[] {"this", "this is"}, false },
        {"this is a value", new String[] {"this", "IS", "a", "VALue"}, true },
        {"this is a value", new String[] {"his IS", "A val",}, true },
        {"this is a value", new String[] {"not",}, false },
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/CaseIgnoreSubstringMatchingRuleTest.java
@@ -54,9 +54,10 @@
        {"this is a value", new String[] {"VALUE"}, true },
        {"this is a value", new String[] {" "}, true },
        {"this is a value", new String[] {"this", "is", "a", "value"}, true },
       // disabled because of issue 730
       // {"this is a value", new String[] {"value", "this"}, true },
       // {"this is a value", new String[] {"this", "this is"}, true },
         // The matching rule requires ordered non overlapping substrings.
         // Issue #730 was not valid.
        {"this is a value", new String[] {"value", "this"}, false },
        {"this is a value", new String[] {"this", "this is"}, false },
        {"this is a value", new String[] {"this", "IS", "a", "VALue"}, true },
        {"this is a value", new String[] {"his IS", "A val",}, true },
        {"this is a value", new String[] {"not",}, false },
opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringSubstringMatchingRuleTest.java
@@ -44,10 +44,11 @@
  public Object[][] createSubstringMiddleMatchData()
  {
    return new Object[][] {
       // disabled becasue of issue 730
       // {"123456789", new String[] {"123", "234", "567", "789"}, true },
       // {"123456789", new String[] {"123", "234"}, true },
       // {"123456789", new String[] {"567", "234"}, true },
         // The matching rule requires ordered non overlapping substrings.
         // Issue #730 was not valid.
        {"123456789", new String[] {"123", "234", "567", "789"}, false },
        {"123456789", new String[] {"123", "234"}, false },
        {"123456789", new String[] {"567", "234"}, false },
        {"123456789", new String[] {"123", "456"}, true },
        {"123456789", new String[] {"123"}, true },
        {"123456789", new String[] {"456"}, true },