Remove test cases added for schema issues found to be invalid.
| | |
| | | public Object[][] createOrderingMatchingRuleTestData() |
| | | { |
| | | return new Object[][] { |
| | | // following test is currently disabled because it does not work |
| | | // {"1", "09", -1}, |
| | | // see issue 638 |
| | | {"1", "999999999999999999999", -1}, |
| | | {"1", "9", -1}, |
| | | {"1", " 1 ", 0}, |
| | |
| | | return new Object [][] { |
| | | {"123$france$456", true}, |
| | | {"abcdefghijk$lmnopqr$stuvwxyz", true}, |
| | | {"12345$67890$()+,-./:? ", true}, |
| | | /* |
| | | * disabled because of issue : 701 |
| | | * should accept " |
| | | {"12345$67890$\"\"\"", true}, |
| | | */ |
| | | /* disabled because of issue : 701 |
| | | * should not accept backslash and equal sign |
| | | {"12345$67890$\'\'", false}, |
| | | {"12345$67890$===", false},*/ |
| | | |
| | | {"12345$67890$()+,-./:? ", true}, |
| | | }; |
| | | } |
| | | |