Example #1
0
 public static String createOutOfBoundaryValue(EnumerationValues enumValues, int size) {
   if ("XmlString".equals(enumValues.getType())) {
     String value = null;
     do {
       value = BoundaryUtils.createCharacterArray(StringBoundary.AVAILABLE_VALUES, size);
     } while (enumValues.getValuesList().contains(value));
     return value;
   }
   return null;
 }