Tidy up related to issue #730, which was not valid.
| | |
| | | {"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 }, |
| | |
| | | {"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 }, |
| | |
| | | {"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 }, |
| | |
| | | {"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 }, |
| | |
| | | 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 }, |