| | |
| | | @DataProvider(name = "matchingRuleInvalidAttributeValues") |
| | | public Object[][] createMatchingRuleInvalidAttributeValues() |
| | | { |
| | | return new Object[][] { { "\'a\'B" }, { "0" }, { "010101" }, |
| | | { "\'10101" }, { "\'1010\'A" }, }; |
| | | return new Object[][] { { "\'a\'B" }, { "0" }, { "010101" }, { "\'10101" }, |
| | | { "\'1010\'A" }, }; |
| | | } |
| | | |
| | | |
| | |
| | | @DataProvider(name = "matchingrules") |
| | | public Object[][] createMatchingRuleTest() |
| | | { |
| | | return new Object[][] { |
| | | { "\'0\'B", "\'0\'B", ConditionResult.TRUE }, |
| | | return new Object[][] { { "\'0\'B", "\'0\'B", ConditionResult.TRUE }, |
| | | { "\'1\'B", "\'1\'B", ConditionResult.TRUE }, |
| | | { "\'0\'B", "\'1\'B", ConditionResult.FALSE }, }; |
| | | } |