Class CStringVerification<T extends CVerificationBuilder>

    • Constructor Summary

      Constructors 
      Constructor Description
      CStringVerification​(T verifier, org.slf4j.Logger logger)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void centerPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.center(String, int, String) is equals to expected value.
      void centerPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.center(String, int, String) is equals to expected value.
      void centerPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.center(String, int, String) is NOT equals to expected value.
      void centerPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.center(String, int, String) is NOT equals to expected value.
      void compare​(java.lang.String actual, java.lang.String stringToCompare, int expected)
      Verify if result of StringUtils.compare(String, String) equals to the expected value.
      void compare​(java.lang.String actual, java.lang.String stringToCompare, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.compare(String, String) equals to the expected value.
      void compareIgnoreCase​(java.lang.String actual, java.lang.String stringToCompare, int expected)
      Verify if result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.
      void compareIgnoreCase​(java.lang.String actual, java.lang.String stringToCompare, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.
      void contains​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.contains(CharSequence, CharSequence) is true.
      void contains​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.contains(CharSequence, CharSequence) is true.
      void containsIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true.
      void containsIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true.
      void endsWith​(java.lang.String actual, java.lang.String suffix)
      Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is true
      void endsWith​(java.lang.String actual, java.lang.String suffix, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is true
      void endsWithAny​(java.lang.String actual, java.util.List<java.lang.String> searchInputs)
      Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.
      void endsWithAny​(java.lang.String actual, java.util.List<java.lang.String> searchInputs, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.
      void endsWithIgnoreCase​(java.lang.String actual, java.lang.String suffix)
      Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.
      void endsWithIgnoreCase​(java.lang.String actual, java.lang.String suffix, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.
      void endsWithNone​(java.lang.String actual, java.util.List<java.lang.String> searchInputs)
      Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.
      void endsWithNone​(java.lang.String actual, java.util.List<java.lang.String> searchInputs, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.
      void equals​(java.lang.String actual, java.lang.String expected)
      Verify if equals(String) value equals the expected value.
      void equals​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equals(String) value equals the expected value.
      void equalsAny​(java.lang.String actual, java.util.List<java.lang.String> expectedList)
      Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) equals to the expected value.
      void equalsAny​(java.lang.String actual, java.util.List<java.lang.String> expectedList, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) equals to the expected value.
      void equalsAnyIgnoreCase​(java.lang.String actual, java.util.List<java.lang.String> expectedList)
      Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is true.
      void equalsAnyIgnoreCase​(java.lang.String actual, java.util.List<java.lang.String> expectedList, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is true.
      void equalsIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if equalsIgnoreCase(String) value equals the expected value.
      void equalsIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equalsIgnoreCase(String) value equals the expected value.
      void equalsIgnoreWhiteSpaces​(java.lang.String actual, java.lang.String expected)
      Verify if equalsIgnoreWhiteSpace(String) value equals the expected value.
      void equalsIgnoreWhiteSpaces​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equalsIgnoreWhiteSpace(String) value equals the expected value.
      void equalsNone​(java.lang.String actual, java.util.List<java.lang.String> expectedList)
      Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) is false
      void equalsNone​(java.lang.String actual, java.util.List<java.lang.String> expectedList, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) is false
      void equalsNoneIgnoreCase​(java.lang.String actual, java.util.List<java.lang.String> expectedList)
      Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false.
      void equalsNoneIgnoreCase​(java.lang.String actual, java.util.List<java.lang.String> expectedList, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false.
      void isAlpha​(java.lang.String actual)
      Verify if result of StringUtils.isAlpha(CharSequence) is true.
      void isAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlpha(CharSequence) is true.
      void isAlphanumeric​(java.lang.String actual)
      Verify if result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isAlphanumericSpace​(java.lang.String actual)
      Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is true.
      void isAlphanumericSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is true.
      void isAlphaSpace​(java.lang.String actual)
      Verify if result of StringUtils.isAlphaSpace(CharSequence) is true.
      void isAlphaSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphaSpace(CharSequence) is true.
      void isAsciiPrintable​(java.lang.String actual)
      Verify if result of StringUtils.isAsciiPrintable(CharSequence) is true.
      void isAsciiPrintable​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAsciiPrintable(CharSequence) is true.
      void isBlank​(java.lang.String actual)
      Verify if String value is blank (Null or Empty)
      void isBlank​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if String value is blank (Null or Empty)
      void isBlankOrAlpha​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is true.
      void isBlankOrAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is true.
      void isBlankOrAlphanumeric​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isBlankOrAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isBlankOrNotAlpha​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is false.
      void isBlankOrNotAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is false.
      void isBlankOrNotAlphanumeric​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isBlankOrNotAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isBlankOrNotNumeric​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is false.
      void isBlankOrNotNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is false.
      void isBlankOrNumeric​(java.lang.String actual)
      Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is true.
      void isBlankOrNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is true.
      void isEmpty​(java.lang.String actual)
      Verify if String value is empty
      void isEmpty​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if String value is empty
      void isEmptyOrAlpha​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.
      void isEmptyOrAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.
      void isEmptyOrAlphanumeric​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isEmptyOrAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      void isEmptyOrNotAlpha​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.
      void isEmptyOrNotAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.
      void isEmptyOrNotAlphanumeric​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isEmptyOrNotAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isEmptyOrNotNumeric​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is false.
      void isEmptyOrNotNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is false.
      void isEmptyOrNumeric​(java.lang.String actual)
      Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true.
      void isEmptyOrNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true.
      void isNotAlpha​(java.lang.String actual)
      Verify if result of StringUtils.isAlpha(CharSequence) is false.
      void isNotAlpha​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlpha(CharSequence) is false.
      void isNotAlphanumeric​(java.lang.String actual)
      Verify if result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isNotAlphanumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphanumeric(CharSequence) is false.
      void isNotAlphanumericSpace​(java.lang.String actual)
      Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is false.
      void isNotAlphanumericSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is false.
      void isNotAlphaSpace​(java.lang.String actual)
      Verify if result of StringUtils.isAlphaSpace(CharSequence) is false.
      void isNotAlphaSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAlphaSpace(CharSequence) is false.
      void isNotAsciiPrintable​(java.lang.String actual)
      Verify if result of StringUtils.isAsciiPrintable(CharSequence) is false.
      void isNotAsciiPrintable​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isAsciiPrintable(CharSequence) is false.
      void isNotBlank​(java.lang.String actual)
      Verify if String value is not blank (Null or Empty)
      void isNotBlank​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if String value is not blank (Null or Empty)
      void isNotEmpty​(java.lang.String actual)
      Verify String value is not empty
      void isNotEmpty​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify String value is not empty
      void isNotNumeric​(java.lang.String actual)
      Verify if result of StringUtils.isNumeric(CharSequence) is false.
      void isNotNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isNumeric(CharSequence) is false.
      void isNotNumericSpace​(java.lang.String actual)
      Verify if result of StringUtils.isNumericSpace(CharSequence) is false.
      void isNotNumericSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isNumericSpace(CharSequence) is false.
      void isNumeric​(java.lang.String actual)
      Verify if result of StringUtils.isNumeric(CharSequence) is true.
      void isNumeric​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isNumeric(CharSequence) is true.
      void isNumericSpace​(java.lang.String actual)
      Verify if result of StringUtils.isNumericSpace(CharSequence) is true.
      void isNumericSpace​(java.lang.String actual, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.isNumericSpace(CharSequence) is true.
      void leftPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.leftPad(String, int, String) is equals to expected value.
      void leftPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.leftPad(String, int, String) is equals to expected value.
      void leftPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.
      void leftPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.
      void leftValueEquals​(java.lang.String actual, int len, java.lang.String expected)
      Verify if result of StringUtils.left(String, int) equals to expected value.
      void leftValueEquals​(java.lang.String actual, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.left(String, int) equals to expected value.
      void leftValueNotEquals​(java.lang.String actual, int len, java.lang.String expected)
      Verify if result of StringUtils.left(String, int) NOT equals to expected value.
      void leftValueNotEquals​(java.lang.String actual, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.left(String, int) NOT equals to expected value.
      void lengthEquals​(java.lang.String actual, int expected)
      Verify if result of StringUtils.length(CharSequence) is equals to expected value.
      void lengthEquals​(java.lang.String actual, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.length(CharSequence) is equals to expected value.
      void lengthNotEquals​(java.lang.String actual, int expected)
      Verify if result of StringUtils.length(CharSequence) is NOT equals to expected value.
      void lengthNotEquals​(java.lang.String actual, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.length(CharSequence) is NOT equals to expected value.
      void matches​(java.lang.String actual, java.lang.String pattern)
      Verify if String value match provided pattern
      void matches​(java.lang.String actual, java.lang.String pattern, java.lang.String message, java.lang.Object... params)
      Verify if String value match provided pattern
      void matches​(java.lang.String actual, java.util.regex.Pattern pattern)
      Verify if String value match provided pattern
      void matches​(java.lang.String actual, java.util.regex.Pattern pattern, java.lang.String message, java.lang.Object... params)
      Verify if String value match provided pattern
      void midValueEquals​(java.lang.String actual, int pos, int len, java.lang.String expected)
      Verify if result of StringUtils.mid(String, int, int) equals to expected value.
      void midValueEquals​(java.lang.String actual, int pos, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.mid(String, int, int) equals to expected value.
      void midValueNotEquals​(java.lang.String actual, int pos, int len, java.lang.String expected)
      Verify if result of StringUtils.mid(String, int, int) NOT equals to expected value.
      void midValueNotEquals​(java.lang.String actual, int pos, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.mid(String, int, int) NOT equals to expected value.
      void notContains​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.contains(CharSequence, CharSequence) is false.
      void notContains​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.contains(CharSequence, CharSequence) is false.
      void notContainsIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.
      void notContainsIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.
      void notEndsWith​(java.lang.String actual, java.lang.String suffix)
      Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is false
      void notEndsWith​(java.lang.String actual, java.lang.String suffix, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is false
      void notEndsWithIgnoreCase​(java.lang.String actual, java.lang.String suffix)
      Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.
      void notEndsWithIgnoreCase​(java.lang.String actual, java.lang.String suffix, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.
      void notEquals​(java.lang.String actual, java.lang.String expected)
      Verify if equals(String) value NOT equals the expected value.
      void notEquals​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equals(String) value NOT equals the expected value.
      void notEqualsIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if equalsIgnoreCase(String) value NOT equals the expected value.
      void notEqualsIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equalsIgnoreCase(String) value NOT equals the expected value.
      void notEqualsIgnoreWhiteSpaces​(java.lang.String actual, java.lang.String expected)
      Verify if equalsIgnoreWhiteSpace(String) value NOT equals the expected value.
      void notEqualsIgnoreWhiteSpaces​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if equalsIgnoreWhiteSpace(String) value NOT equals the expected value.
      void notMatches​(java.lang.String actual, java.lang.String pattern)
      Verify if String value does not match provided pattern
      void notMatches​(java.lang.String actual, java.lang.String pattern, java.lang.String message, java.lang.Object... params)
      Verify if String value does not match provided pattern
      void notMatches​(java.lang.String actual, java.util.regex.Pattern pattern)
      Verify if String value does not match provided pattern
      void notMatches​(java.lang.String actual, java.util.regex.Pattern pattern, java.lang.String message, java.lang.Object... params)
      Verify if String value does not match provided pattern
      void notStartsWith​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is false
      void notStartsWith​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is false
      void notStartsWithIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false
      void notStartsWithIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false
      void numberOfMatchesEquals​(java.lang.String actual, java.lang.String subString, int expected)
      Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.
      void numberOfMatchesEquals​(java.lang.String actual, java.lang.String subString, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.
      void numberOfMatchesNotEquals​(java.lang.String actual, java.lang.String subString, int expected)
      Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.
      void numberOfMatchesNotEquals​(java.lang.String actual, java.lang.String subString, int expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.
      void removeEndEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeEnd(String, String) is equals to expected value.
      void removeEndEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeEnd(String, String) is equals to expected value.
      void removeEndIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.
      void removeEndIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.
      void removeEndIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.
      void removeEndIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.
      void removeEndNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeEnd(String, String) is NOT equals to expected value.
      void removeEndNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeEnd(String, String) is NOT equals to expected value.
      void removeEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.remove(String, String) is equals to expected value.
      void removeEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.remove(String, String) is equals to expected value.
      void removeIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.
      void removeIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.
      void removeIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.
      void removeIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.
      void removeNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.remove(String, String) is NOT equals to expected value.
      void removeNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.remove(String, String) is NOT equals to expected value.
      void removeStartEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeStart(String, String) is equals to expected value.
      void removeStartEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeStart(String, String) is equals to expected value.
      void removeStartIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.
      void removeStartIgnoreCaseEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.
      void removeStartIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.
      void removeStartIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.
      void removeStartNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected)
      Verify if result of StringUtils.removeStart(String, String) is NOT equals to expected value.
      void removeStartNotEquals​(java.lang.String actual, java.lang.String remove, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.removeStart(String, String) is NOT equals to expected value.
      void replaceEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replace(String, String, String) is equals to expected value.
      void replaceEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replace(String, String, String) is equals to expected value.
      void replaceIgnoreCaseEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.
      void replaceIgnoreCaseEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.
      void replaceIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.
      void replaceIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.
      void replaceNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replace(String, String, String) is NOT equals to expected value.
      void replaceNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replace(String, String, String) is NOT equals to expected value.
      void replaceOnceEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceOnce(String, String, String) is equals to expected value.
      void replaceOnceEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceOnce(String, String, String) is equals to expected value.
      void replaceOnceIgnoreCaseEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.
      void replaceOnceIgnoreCaseEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.
      void replaceOnceIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.
      void replaceOnceIgnoreCaseNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.
      void replaceOnceNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Verify if result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.
      void replaceOnceNotEquals​(java.lang.String actual, java.lang.String searchString, java.lang.String replacement, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.
      void reverseEquals​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.reverse(String) is equals to expected value.
      void reverseEquals​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.reverse(String) is equals to expected value.
      void reverseNotEquals​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.reverse(String) is NOT equals to expected value.
      void reverseNotEquals​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.reverse(String) is NOT equals to expected value.
      void rightPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.rightPad(String, int, String) is equals to expected value.
      void rightPadEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.rightPad(String, int, String) is equals to expected value.
      void rightPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected)
      Verify if result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.
      void rightPadNotEquals​(java.lang.String actual, int size, java.lang.String padStr, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.
      void rightValueEquals​(java.lang.String actual, int len, java.lang.String expected)
      Verify if result of StringUtils.right(String, int) equals to expected value.
      void rightValueEquals​(java.lang.String actual, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.right(String, int) equals to expected value.
      void rightValueNotEquals​(java.lang.String actual, int len, java.lang.String expected)
      Verify if result of StringUtils.right(String, int) NOT equals to expected value.
      void rightValueNotEquals​(java.lang.String actual, int len, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.right(String, int) NOT equals to expected value.
      void startsWith​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is true
      void startsWith​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is true
      void startsWithAny​(java.lang.String actual, java.util.List<java.lang.String> searchInputs)
      Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true
      void startsWithAny​(java.lang.String actual, java.util.List<java.lang.String> searchInputs, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true
      void startsWithIgnoreCase​(java.lang.String actual, java.lang.String expected)
      Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true
      void startsWithIgnoreCase​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true
      void startsWithNone​(java.lang.String actual, java.util.List<java.lang.String> searchInputs)
      Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false
      void startsWithNone​(java.lang.String actual, java.util.List<java.lang.String> searchInputs, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false
      void stripedEndValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if stripEnd(String) value equals the expected value.
      void stripedEndValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if stripEnd(String) value equals the expected value.
      void stripedEndValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if stripEnd(String) value NOT equals the expected value.
      void stripedEndValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if stripEnd(String) value NOT equals the expected value.
      void stripedStartValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if stripStart(String) value equals the expected value.
      void stripedStartValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if stripStart(String) value equals the expected value.
      void stripedStartValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if stripStart(String) value NOT equals the expected value.
      void stripedStartValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if stripStart(String) value NOT equals the expected value.
      void stripedValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if strip(String) value equals the expected value.
      void stripedValue​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if strip(String) value equals the expected value.
      void stripedValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected)
      Verify if strip(String) value NOT equals the expected value.
      void stripedValueNot​(java.lang.String actual, java.lang.String stripChars, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if strip(String) value NOT equals the expected value.
      void substringAfterEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringAfter(String, String) equals to expected value.
      void substringAfterEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringAfter(String, String) equals to expected value.
      void substringAfterLastEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringAfterLast(String, String) equals to expected value.
      void substringAfterLastEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringAfterLast(String, String) equals to expected value.
      void substringAfterLastNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.
      void substringAfterLastNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.
      void substringAfterNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringAfter(String, String) NOT equals to expected value.
      void substringAfterNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringAfter(String, String) NOT equals to expected value.
      void substringBeforeEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringBefore(String, String) equals to expected value.
      void substringBeforeEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBefore(String, String) equals to expected value.
      void substringBeforeLastEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringBeforeLast(String, String) equals to expected value.
      void substringBeforeLastEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBeforeLast(String, String) equals to expected value.
      void substringBeforeLastNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.
      void substringBeforeLastNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.
      void substringBeforeNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected)
      Verify if result of StringUtils.substringBefore(String, String) NOT equals to expected value.
      void substringBeforeNotEquals​(java.lang.String actual, java.lang.String separator, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBefore(String, String) NOT equals to expected value.
      void substringBetweenEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected)
      Verify if result of StringUtils.substringBetween(String, String, String) equals to expected value.
      void substringBetweenEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBetween(String, String, String) equals to expected value.
      void substringBetweenNotEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected)
      Verify if result of StringUtils.substringBetween(String, String, String) NOT equals to expected value.
      void substringBetweenNotEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringBetween(String, String, String) NOT equals to expected value.
      void substringEquals​(java.lang.String actual, int start, int end, java.lang.String expected)
      Verify if result of StringUtils.substring(String, int, int) equals to expected value.
      void substringEquals​(java.lang.String actual, int start, int end, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substring(String, int, int) equals to expected value.
      void substringEquals​(java.lang.String actual, int start, java.lang.String expected)
      Verify if result of StringUtils.substring(String, int) equals to expected value.
      void substringEquals​(java.lang.String actual, int start, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substring(String, int) equals to expected value.
      void substringNotEquals​(java.lang.String actual, int start, int end, java.lang.String expected)
      Verify if result of StringUtils.substring(String, int, int) NOT equals to expected value.
      void substringNotEquals​(java.lang.String actual, int start, int end, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substring(String, int, int) NOT equals to expected value.
      void substringNotEquals​(java.lang.String actual, int start, java.lang.String expected)
      Verify if result of StringUtils.substring(String, int) NOT equals to expected value.
      void substringNotEquals​(java.lang.String actual, int start, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substring(String, int) NOT equals to expected value.
      void substringsBetweenContains​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected)
      Verify if result of StringUtils.substringsBetween(String, String, String) contains to expected value.
      void substringsBetweenContains​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringsBetween(String, String, String) contains to expected value.
      void substringsBetweenEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected)
      Verify if result of StringUtils.substringsBetween(String, String, String) equals to expected value.
      void substringsBetweenEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringsBetween(String, String, String) equals to expected value.
      void substringsBetweenNotContains​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected)
      Verify if result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.
      void substringsBetweenNotContains​(java.lang.String actual, java.lang.String open, java.lang.String close, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.
      void substringsBetweenNotEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected)
      Verify if result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.
      void substringsBetweenNotEquals​(java.lang.String actual, java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, java.lang.String message, java.lang.Object... params)
      Verify if result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.
      void trimmedValue​(java.lang.String actual, java.lang.String expected)
      Verify if trim() value equals the expected value.
      void trimmedValue​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if trim() value equals the expected value.
      void trimmedValueNot​(java.lang.String actual, java.lang.String expected)
      Verify if trim() value NOT equals the expected value.
      void trimmedValueNot​(java.lang.String actual, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if trim() value NOT equals the expected value.
      void truncatedValue​(java.lang.String actual, int offset, int maxWidth, java.lang.String expected)
      Verify if truncate(Int, Int) value equals the expected value.
      void truncatedValue​(java.lang.String actual, int offset, int maxWidth, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if truncate(Int, Int) value equals the expected value.
      void truncatedValue​(java.lang.String actual, int maxWidth, java.lang.String expected)
      Verify if truncate(Int) value equals the expected value.
      void truncatedValue​(java.lang.String actual, int maxWidth, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if truncate(Int) value equals the expected value.
      void truncatedValueNot​(java.lang.String actual, int offset, int maxWidth, java.lang.String expected)
      Verify if truncate(Int, Int) value NOT equals the expected value.
      void truncatedValueNot​(java.lang.String actual, int offset, int maxWidth, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if truncate(Int, Int) value NOT equals the expected value.
      void truncatedValueNot​(java.lang.String actual, int maxWidth, java.lang.String expected)
      Verify if truncate(Int) value equals the expected value.
      void truncatedValueNot​(java.lang.String actual, int maxWidth, java.lang.String expected, java.lang.String message, java.lang.Object... params)
      Verify if truncate(Int) value equals the expected value.
      void waitMatchesAny​(java.lang.String actual, java.util.List<java.util.regex.Pattern> patterns)
      Verify if String value match any of provided patterns
      void waitMatchesAny​(java.lang.String actual, java.util.List<java.util.regex.Pattern> patterns, java.lang.String message, java.lang.Object... params)
      Verify if String value match any of provided patterns
      void waitMatchesNone​(java.lang.String actual, java.util.List<java.util.regex.Pattern> patterns)
      Verify if String value NOT match any of provided patterns
      void waitMatchesNone​(java.lang.String actual, java.util.List<java.util.regex.Pattern> patterns, java.lang.String message, java.lang.Object... params)
      Verify if String value NOT match any of provided patterns
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CStringVerification

        public CStringVerification​(T verifier,
                                   org.slf4j.Logger logger)
    • Method Detail

      • centerPadEquals

        public void centerPadEquals​(java.lang.String actual,
                                    int size,
                                    java.lang.String padStr,
                                    java.lang.String expected)

        Verify if result of StringUtils.center(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
      • centerPadEquals

        public void centerPadEquals​(java.lang.String actual,
                                    int size,
                                    java.lang.String padStr,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.center(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • centerPadNotEquals

        public void centerPadNotEquals​(java.lang.String actual,
                                       int size,
                                       java.lang.String padStr,
                                       java.lang.String expected)

        Verify if result of StringUtils.center(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
      • centerPadNotEquals

        public void centerPadNotEquals​(java.lang.String actual,
                                       int size,
                                       java.lang.String padStr,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.center(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • compare

        public void compare​(java.lang.String actual,
                            java.lang.String stringToCompare,
                            int expected)

        Verify if result of StringUtils.compare(String, String) equals to the expected value.

        Parameters:
        actual - value to compare
        stringToCompare - the string value to compare against
        expected - the expected result.
      • compare

        public void compare​(java.lang.String actual,
                            java.lang.String stringToCompare,
                            int expected,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if result of StringUtils.compare(String, String) equals to the expected value.

        Parameters:
        actual - value to compare
        stringToCompare - the string value to compare against
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • compareIgnoreCase

        public void compareIgnoreCase​(java.lang.String actual,
                                      java.lang.String stringToCompare,
                                      int expected)

        Verify if result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.

        Parameters:
        actual - value to compare
        stringToCompare - the string value to compare against
        expected - the expected result.
      • compareIgnoreCase

        public void compareIgnoreCase​(java.lang.String actual,
                                      java.lang.String stringToCompare,
                                      int expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.

        Parameters:
        actual - value to compare
        stringToCompare - the string value to compare against
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • contains

        public void contains​(java.lang.String actual,
                             java.lang.String expected)

        Verify if result of StringUtils.contains(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • contains

        public void contains​(java.lang.String actual,
                             java.lang.String expected,
                             java.lang.String message,
                             java.lang.Object... params)

        Verify if result of StringUtils.contains(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • containsIgnoreCase

        public void containsIgnoreCase​(java.lang.String actual,
                                       java.lang.String expected)

        Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • containsIgnoreCase

        public void containsIgnoreCase​(java.lang.String actual,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • endsWith

        public void endsWith​(java.lang.String actual,
                             java.lang.String suffix)

        Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
      • endsWith

        public void endsWith​(java.lang.String actual,
                             java.lang.String suffix,
                             java.lang.String message,
                             java.lang.Object... params)

        Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • endsWithAny

        public void endsWithAny​(java.lang.String actual,
                                java.util.List<java.lang.String> searchInputs)

        Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
      • endsWithAny

        public void endsWithAny​(java.lang.String actual,
                                java.util.List<java.lang.String> searchInputs,
                                java.lang.String message,
                                java.lang.Object... params)

        Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • endsWithIgnoreCase

        public void endsWithIgnoreCase​(java.lang.String actual,
                                       java.lang.String suffix)

        Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
      • endsWithIgnoreCase

        public void endsWithIgnoreCase​(java.lang.String actual,
                                       java.lang.String suffix,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • endsWithNone

        public void endsWithNone​(java.lang.String actual,
                                 java.util.List<java.lang.String> searchInputs)

        Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
      • endsWithNone

        public void endsWithNone​(java.lang.String actual,
                                 java.util.List<java.lang.String> searchInputs,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equals

        public void equals​(java.lang.String actual,
                           java.lang.String expected)

        Verify if equals(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • equals

        public void equals​(java.lang.String actual,
                           java.lang.String expected,
                           java.lang.String message,
                           java.lang.Object... params)

        Verify if equals(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsAny

        public void equalsAny​(java.lang.String actual,
                              java.util.List<java.lang.String> expectedList)

        Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) equals to the expected value.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
      • equalsAny

        public void equalsAny​(java.lang.String actual,
                              java.util.List<java.lang.String> expectedList,
                              java.lang.String message,
                              java.lang.Object... params)

        Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) equals to the expected value.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsAnyIgnoreCase

        public void equalsAnyIgnoreCase​(java.lang.String actual,
                                        java.util.List<java.lang.String> expectedList)

        Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is true.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
      • equalsAnyIgnoreCase

        public void equalsAnyIgnoreCase​(java.lang.String actual,
                                        java.util.List<java.lang.String> expectedList,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is true.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsIgnoreCase

        public void equalsIgnoreCase​(java.lang.String actual,
                                     java.lang.String expected)

        Verify if equalsIgnoreCase(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • equalsIgnoreCase

        public void equalsIgnoreCase​(java.lang.String actual,
                                     java.lang.String expected,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if equalsIgnoreCase(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsIgnoreWhiteSpaces

        public void equalsIgnoreWhiteSpaces​(java.lang.String actual,
                                            java.lang.String expected)

        Verify if equalsIgnoreWhiteSpace(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • equalsIgnoreWhiteSpaces

        public void equalsIgnoreWhiteSpaces​(java.lang.String actual,
                                            java.lang.String expected,
                                            java.lang.String message,
                                            java.lang.Object... params)

        Verify if equalsIgnoreWhiteSpace(String) value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsNone

        public void equalsNone​(java.lang.String actual,
                               java.util.List<java.lang.String> expectedList)

        Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) is false

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
      • equalsNone

        public void equalsNone​(java.lang.String actual,
                               java.util.List<java.lang.String> expectedList,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if result of StringUtils.equalsAny(CharSequence, CharSequence...) is false

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • equalsNoneIgnoreCase

        public void equalsNoneIgnoreCase​(java.lang.String actual,
                                         java.util.List<java.lang.String> expectedList)

        Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
      • equalsNoneIgnoreCase

        public void equalsNoneIgnoreCase​(java.lang.String actual,
                                         java.util.List<java.lang.String> expectedList,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false.

        Parameters:
        actual - value to compare
        expectedList - a list of strings, may be null.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isAlpha

        public void isAlpha​(java.lang.String actual)

        Verify if result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isAlpha

        public void isAlpha​(java.lang.String actual,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isAlphaSpace

        public void isAlphaSpace​(java.lang.String actual)

        Verify if result of StringUtils.isAlphaSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isAlphaSpace

        public void isAlphaSpace​(java.lang.String actual,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if result of StringUtils.isAlphaSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isAlphanumeric

        public void isAlphanumeric​(java.lang.String actual)

        Verify if result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isAlphanumeric

        public void isAlphanumeric​(java.lang.String actual,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isAlphanumericSpace

        public void isAlphanumericSpace​(java.lang.String actual)

        Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isAlphanumericSpace

        public void isAlphanumericSpace​(java.lang.String actual,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isAsciiPrintable

        public void isAsciiPrintable​(java.lang.String actual)

        Verify if result of StringUtils.isAsciiPrintable(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isAsciiPrintable

        public void isAsciiPrintable​(java.lang.String actual,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if result of StringUtils.isAsciiPrintable(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlank

        public void isBlank​(java.lang.String actual)

        Verify if String value is blank (Null or Empty)

        Parameters:
        actual - value to compare
      • isBlank

        public void isBlank​(java.lang.String actual,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if String value is blank (Null or Empty)

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrAlpha

        public void isBlankOrAlpha​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isBlankOrAlpha

        public void isBlankOrAlpha​(java.lang.String actual,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrAlphanumeric

        public void isBlankOrAlphanumeric​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isBlankOrAlphanumeric

        public void isBlankOrAlphanumeric​(java.lang.String actual,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrNotAlpha

        public void isBlankOrNotAlpha​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isBlankOrNotAlpha

        public void isBlankOrNotAlpha​(java.lang.String actual,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrNotAlphanumeric

        public void isBlankOrNotAlphanumeric​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isBlankOrNotAlphanumeric

        public void isBlankOrNotAlphanumeric​(java.lang.String actual,
                                             java.lang.String message,
                                             java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrNotNumeric

        public void isBlankOrNotNumeric​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isBlankOrNotNumeric

        public void isBlankOrNotNumeric​(java.lang.String actual,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isBlankOrNumeric

        public void isBlankOrNumeric​(java.lang.String actual)

        Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isBlankOrNumeric

        public void isBlankOrNumeric​(java.lang.String actual,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if string value is Blank or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmpty

        public void isEmpty​(java.lang.String actual)

        Verify if String value is empty

        Parameters:
        actual - value to compare
      • isEmpty

        public void isEmpty​(java.lang.String actual,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if String value is empty

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrAlpha

        public void isEmptyOrAlpha​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isEmptyOrAlpha

        public void isEmptyOrAlpha​(java.lang.String actual,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrAlphanumeric

        public void isEmptyOrAlphanumeric​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isEmptyOrAlphanumeric

        public void isEmptyOrAlphanumeric​(java.lang.String actual,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrNotAlpha

        public void isEmptyOrNotAlpha​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isEmptyOrNotAlpha

        public void isEmptyOrNotAlpha​(java.lang.String actual,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrNotAlphanumeric

        public void isEmptyOrNotAlphanumeric​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isEmptyOrNotAlphanumeric

        public void isEmptyOrNotAlphanumeric​(java.lang.String actual,
                                             java.lang.String message,
                                             java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrNotNumeric

        public void isEmptyOrNotNumeric​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isEmptyOrNotNumeric

        public void isEmptyOrNotNumeric​(java.lang.String actual,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isEmptyOrNumeric

        public void isEmptyOrNumeric​(java.lang.String actual)

        Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isEmptyOrNumeric

        public void isEmptyOrNumeric​(java.lang.String actual,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotAlpha

        public void isNotAlpha​(java.lang.String actual)

        Verify if result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotAlpha

        public void isNotAlpha​(java.lang.String actual,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotAlphaSpace

        public void isNotAlphaSpace​(java.lang.String actual)

        Verify if result of StringUtils.isAlphaSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotAlphaSpace

        public void isNotAlphaSpace​(java.lang.String actual,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.isAlphaSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotAlphanumeric

        public void isNotAlphanumeric​(java.lang.String actual)

        Verify if result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotAlphanumeric

        public void isNotAlphanumeric​(java.lang.String actual,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotAlphanumericSpace

        public void isNotAlphanumericSpace​(java.lang.String actual)

        Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotAlphanumericSpace

        public void isNotAlphanumericSpace​(java.lang.String actual,
                                           java.lang.String message,
                                           java.lang.Object... params)

        Verify if result of StringUtils.isAlphanumericSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotAsciiPrintable

        public void isNotAsciiPrintable​(java.lang.String actual)

        Verify if result of StringUtils.isAsciiPrintable(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotAsciiPrintable

        public void isNotAsciiPrintable​(java.lang.String actual,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if result of StringUtils.isAsciiPrintable(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotBlank

        public void isNotBlank​(java.lang.String actual)

        Verify if String value is not blank (Null or Empty)

        Parameters:
        actual - value to compare
      • isNotBlank

        public void isNotBlank​(java.lang.String actual,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if String value is not blank (Null or Empty)

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotEmpty

        public void isNotEmpty​(java.lang.String actual)

        Verify String value is not empty

        Parameters:
        actual - value to compare
      • isNotEmpty

        public void isNotEmpty​(java.lang.String actual,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify String value is not empty

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotNumeric

        public void isNotNumeric​(java.lang.String actual)

        Verify if result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotNumeric

        public void isNotNumeric​(java.lang.String actual,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNotNumericSpace

        public void isNotNumericSpace​(java.lang.String actual)

        Verify if result of StringUtils.isNumericSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
      • isNotNumericSpace

        public void isNotNumericSpace​(java.lang.String actual,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.isNumericSpace(CharSequence) is false.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNumeric

        public void isNumeric​(java.lang.String actual)

        Verify if result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isNumeric

        public void isNumeric​(java.lang.String actual,
                              java.lang.String message,
                              java.lang.Object... params)

        Verify if result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • isNumericSpace

        public void isNumericSpace​(java.lang.String actual)

        Verify if result of StringUtils.isNumericSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
      • isNumericSpace

        public void isNumericSpace​(java.lang.String actual,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if result of StringUtils.isNumericSpace(CharSequence) is true.

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • leftPadEquals

        public void leftPadEquals​(java.lang.String actual,
                                  int size,
                                  java.lang.String padStr,
                                  java.lang.String expected)

        Verify if result of StringUtils.leftPad(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
      • leftPadEquals

        public void leftPadEquals​(java.lang.String actual,
                                  int size,
                                  java.lang.String padStr,
                                  java.lang.String expected,
                                  java.lang.String message,
                                  java.lang.Object... params)

        Verify if result of StringUtils.leftPad(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • leftPadNotEquals

        public void leftPadNotEquals​(java.lang.String actual,
                                     int size,
                                     java.lang.String padStr,
                                     java.lang.String expected)

        Verify if result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
      • leftPadNotEquals

        public void leftPadNotEquals​(java.lang.String actual,
                                     int size,
                                     java.lang.String padStr,
                                     java.lang.String expected,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • leftValueEquals

        public void leftValueEquals​(java.lang.String actual,
                                    int len,
                                    java.lang.String expected)

        Verify if result of StringUtils.left(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
      • leftValueEquals

        public void leftValueEquals​(java.lang.String actual,
                                    int len,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.left(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • leftValueNotEquals

        public void leftValueNotEquals​(java.lang.String actual,
                                       int len,
                                       java.lang.String expected)

        Verify if result of StringUtils.left(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
      • leftValueNotEquals

        public void leftValueNotEquals​(java.lang.String actual,
                                       int len,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.left(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • lengthEquals

        public void lengthEquals​(java.lang.String actual,
                                 int expected)

        Verify if result of StringUtils.length(CharSequence) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • lengthEquals

        public void lengthEquals​(java.lang.String actual,
                                 int expected,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if result of StringUtils.length(CharSequence) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • lengthNotEquals

        public void lengthNotEquals​(java.lang.String actual,
                                    int expected)

        Verify if result of StringUtils.length(CharSequence) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • lengthNotEquals

        public void lengthNotEquals​(java.lang.String actual,
                                    int expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.length(CharSequence) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • matches

        public void matches​(java.lang.String actual,
                            java.util.regex.Pattern pattern)

        Verify if String value match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
      • matches

        public void matches​(java.lang.String actual,
                            java.util.regex.Pattern pattern,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if String value match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • waitMatchesAny

        public void waitMatchesAny​(java.lang.String actual,
                                   java.util.List<java.util.regex.Pattern> patterns)

        Verify if String value match any of provided patterns

        Parameters:
        actual - value to compare
        patterns - regular expression pattern
      • waitMatchesAny

        public void waitMatchesAny​(java.lang.String actual,
                                   java.util.List<java.util.regex.Pattern> patterns,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if String value match any of provided patterns

        Parameters:
        actual - value to compare
        patterns - regular expression pattern
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • waitMatchesNone

        public void waitMatchesNone​(java.lang.String actual,
                                    java.util.List<java.util.regex.Pattern> patterns)

        Verify if String value NOT match any of provided patterns

        Parameters:
        actual - value to compare
        patterns - regular expression pattern
      • waitMatchesNone

        public void waitMatchesNone​(java.lang.String actual,
                                    java.util.List<java.util.regex.Pattern> patterns,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if String value NOT match any of provided patterns

        Parameters:
        actual - value to compare
        patterns - regular expression pattern
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • matches

        public void matches​(java.lang.String actual,
                            java.lang.String pattern)

        Verify if String value match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
      • matches

        public void matches​(java.lang.String actual,
                            java.lang.String pattern,
                            java.lang.String message,
                            java.lang.Object... params)

        Verify if String value match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • midValueEquals

        public void midValueEquals​(java.lang.String actual,
                                   int pos,
                                   int len,
                                   java.lang.String expected)

        Verify if result of StringUtils.mid(String, int, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
      • midValueEquals

        public void midValueEquals​(java.lang.String actual,
                                   int pos,
                                   int len,
                                   java.lang.String expected,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if result of StringUtils.mid(String, int, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • midValueNotEquals

        public void midValueNotEquals​(java.lang.String actual,
                                      int pos,
                                      int len,
                                      java.lang.String expected)

        Verify if result of StringUtils.mid(String, int, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
      • midValueNotEquals

        public void midValueNotEquals​(java.lang.String actual,
                                      int pos,
                                      int len,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.mid(String, int, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notContains

        public void notContains​(java.lang.String actual,
                                java.lang.String expected)

        Verify if result of StringUtils.contains(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notContains

        public void notContains​(java.lang.String actual,
                                java.lang.String expected,
                                java.lang.String message,
                                java.lang.Object... params)

        Verify if result of StringUtils.contains(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notContainsIgnoreCase

        public void notContainsIgnoreCase​(java.lang.String actual,
                                          java.lang.String expected)

        Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notContainsIgnoreCase

        public void notContainsIgnoreCase​(java.lang.String actual,
                                          java.lang.String expected,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notEndsWith

        public void notEndsWith​(java.lang.String actual,
                                java.lang.String suffix)

        Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
      • notEndsWith

        public void notEndsWith​(java.lang.String actual,
                                java.lang.String suffix,
                                java.lang.String message,
                                java.lang.Object... params)

        Verify if result of StringUtils.endsWith(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notEndsWithIgnoreCase

        public void notEndsWithIgnoreCase​(java.lang.String actual,
                                          java.lang.String suffix)

        Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
      • notEndsWithIgnoreCase

        public void notEndsWithIgnoreCase​(java.lang.String actual,
                                          java.lang.String suffix,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        actual - value to compare
        suffix - the suffix to find, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notEquals

        public void notEquals​(java.lang.String actual,
                              java.lang.String expected)

        Verify if equals(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notEquals

        public void notEquals​(java.lang.String actual,
                              java.lang.String expected,
                              java.lang.String message,
                              java.lang.Object... params)

        Verify if equals(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notEqualsIgnoreCase

        public void notEqualsIgnoreCase​(java.lang.String actual,
                                        java.lang.String expected)

        Verify if equalsIgnoreCase(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notEqualsIgnoreCase

        public void notEqualsIgnoreCase​(java.lang.String actual,
                                        java.lang.String expected,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if equalsIgnoreCase(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notEqualsIgnoreWhiteSpaces

        public void notEqualsIgnoreWhiteSpaces​(java.lang.String actual,
                                               java.lang.String expected)

        Verify if equalsIgnoreWhiteSpace(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notEqualsIgnoreWhiteSpaces

        public void notEqualsIgnoreWhiteSpaces​(java.lang.String actual,
                                               java.lang.String expected,
                                               java.lang.String message,
                                               java.lang.Object... params)

        Verify if equalsIgnoreWhiteSpace(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notMatches

        public void notMatches​(java.lang.String actual,
                               java.util.regex.Pattern pattern)

        Verify if String value does not match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
      • notMatches

        public void notMatches​(java.lang.String actual,
                               java.util.regex.Pattern pattern,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if String value does not match provided pattern

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        pattern - regular expression pattern
      • notMatches

        public void notMatches​(java.lang.String actual,
                               java.lang.String pattern)

        Verify if String value does not match provided pattern

        Parameters:
        actual - value to compare
        pattern - regular expression pattern
      • notMatches

        public void notMatches​(java.lang.String actual,
                               java.lang.String pattern,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if String value does not match provided pattern

        Parameters:
        actual - value to compare
        message - information about the propose of this verification.
        pattern - regular expression pattern
      • notStartsWith

        public void notStartsWith​(java.lang.String actual,
                                  java.lang.String expected,
                                  java.lang.String message,
                                  java.lang.Object... params)

        Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notStartsWith

        public void notStartsWith​(java.lang.String actual,
                                  java.lang.String expected)

        Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        expected - the expected result.
      • notStartsWithIgnoreCase

        public void notStartsWithIgnoreCase​(java.lang.String actual,
                                            java.lang.String expected,
                                            java.lang.String message,
                                            java.lang.Object... params)

        Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • notStartsWithIgnoreCase

        public void notStartsWithIgnoreCase​(java.lang.String actual,
                                            java.lang.String expected)

        Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false

        Parameters:
        actual - value to compare
        expected - the expected result.
      • numberOfMatchesEquals

        public void numberOfMatchesEquals​(java.lang.String actual,
                                          java.lang.String subString,
                                          int expected,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        subString - the substring to count, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • numberOfMatchesEquals

        public void numberOfMatchesEquals​(java.lang.String actual,
                                          java.lang.String subString,
                                          int expected)

        Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        subString - the substring to count, may be null
      • numberOfMatchesNotEquals

        public void numberOfMatchesNotEquals​(java.lang.String actual,
                                             java.lang.String subString,
                                             int expected,
                                             java.lang.String message,
                                             java.lang.Object... params)

        Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        subString - the substring to count, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • numberOfMatchesNotEquals

        public void numberOfMatchesNotEquals​(java.lang.String actual,
                                             java.lang.String subString,
                                             int expected)

        Verify if result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        subString - the substring to count, may be null
      • removeEndEquals

        public void removeEndEquals​(java.lang.String actual,
                                    java.lang.String remove,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.removeEnd(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeEndEquals

        public void removeEndEquals​(java.lang.String actual,
                                    java.lang.String remove,
                                    java.lang.String expected)

        Verify if result of StringUtils.removeEnd(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • removeEndIgnoreCaseEquals

        public void removeEndIgnoreCaseEquals​(java.lang.String actual,
                                              java.lang.String remove,
                                              java.lang.String expected,
                                              java.lang.String message,
                                              java.lang.Object... params)

        Verify if result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeEndIgnoreCaseEquals

        public void removeEndIgnoreCaseEquals​(java.lang.String actual,
                                              java.lang.String remove,
                                              java.lang.String expected)

        Verify if result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeEndIgnoreCaseNotEquals

        public void removeEndIgnoreCaseNotEquals​(java.lang.String actual,
                                                 java.lang.String remove,
                                                 java.lang.String expected,
                                                 java.lang.String message,
                                                 java.lang.Object... params)

        Verify if result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeEndIgnoreCaseNotEquals

        public void removeEndIgnoreCaseNotEquals​(java.lang.String actual,
                                                 java.lang.String remove,
                                                 java.lang.String expected)

        Verify if result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeEndNotEquals

        public void removeEndNotEquals​(java.lang.String actual,
                                       java.lang.String remove,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.removeEnd(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeEndNotEquals

        public void removeEndNotEquals​(java.lang.String actual,
                                       java.lang.String remove,
                                       java.lang.String expected)

        Verify if result of StringUtils.removeEnd(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • removeEquals

        public void removeEquals​(java.lang.String actual,
                                 java.lang.String remove,
                                 java.lang.String expected,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if result of StringUtils.remove(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeEquals

        public void removeEquals​(java.lang.String actual,
                                 java.lang.String remove,
                                 java.lang.String expected)

        Verify if result of StringUtils.remove(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • removeIgnoreCaseEquals

        public void removeIgnoreCaseEquals​(java.lang.String actual,
                                           java.lang.String remove,
                                           java.lang.String expected,
                                           java.lang.String message,
                                           java.lang.Object... params)

        Verify if result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeIgnoreCaseEquals

        public void removeIgnoreCaseEquals​(java.lang.String actual,
                                           java.lang.String remove,
                                           java.lang.String expected)

        Verify if result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeIgnoreCaseNotEquals

        public void removeIgnoreCaseNotEquals​(java.lang.String actual,
                                              java.lang.String remove,
                                              java.lang.String expected,
                                              java.lang.String message,
                                              java.lang.Object... params)

        Verify if result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeIgnoreCaseNotEquals

        public void removeIgnoreCaseNotEquals​(java.lang.String actual,
                                              java.lang.String remove,
                                              java.lang.String expected)

        Verify if result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeNotEquals

        public void removeNotEquals​(java.lang.String actual,
                                    java.lang.String remove,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.remove(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeNotEquals

        public void removeNotEquals​(java.lang.String actual,
                                    java.lang.String remove,
                                    java.lang.String expected)

        Verify if result of StringUtils.remove(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • removeStartEquals

        public void removeStartEquals​(java.lang.String actual,
                                      java.lang.String remove,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.removeStart(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeStartEquals

        public void removeStartEquals​(java.lang.String actual,
                                      java.lang.String remove,
                                      java.lang.String expected)

        Verify if result of StringUtils.removeStart(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • removeStartIgnoreCaseEquals

        public void removeStartIgnoreCaseEquals​(java.lang.String actual,
                                                java.lang.String remove,
                                                java.lang.String expected,
                                                java.lang.String message,
                                                java.lang.Object... params)

        Verify if result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeStartIgnoreCaseEquals

        public void removeStartIgnoreCaseEquals​(java.lang.String actual,
                                                java.lang.String remove,
                                                java.lang.String expected)

        Verify if result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeStartIgnoreCaseNotEquals

        public void removeStartIgnoreCaseNotEquals​(java.lang.String actual,
                                                   java.lang.String remove,
                                                   java.lang.String expected,
                                                   java.lang.String message,
                                                   java.lang.Object... params)

        Verify if result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeStartIgnoreCaseNotEquals

        public void removeStartIgnoreCaseNotEquals​(java.lang.String actual,
                                                   java.lang.String remove,
                                                   java.lang.String expected)

        Verify if result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
      • removeStartNotEquals

        public void removeStartNotEquals​(java.lang.String actual,
                                         java.lang.String remove,
                                         java.lang.String expected,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if result of StringUtils.removeStart(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • removeStartNotEquals

        public void removeStartNotEquals​(java.lang.String actual,
                                         java.lang.String remove,
                                         java.lang.String expected)

        Verify if result of StringUtils.removeStart(String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        remove - the String to search for and remove, may be null
        expected - the expected result.
      • replaceEquals

        public void replaceEquals​(java.lang.String actual,
                                  java.lang.String searchString,
                                  java.lang.String replacement,
                                  java.lang.String expected,
                                  java.lang.String message,
                                  java.lang.Object... params)

        Verify if result of StringUtils.replace(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceEquals

        public void replaceEquals​(java.lang.String actual,
                                  java.lang.String searchString,
                                  java.lang.String replacement,
                                  java.lang.String expected)

        Verify if result of StringUtils.replace(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
      • replaceIgnoreCaseEquals

        public void replaceIgnoreCaseEquals​(java.lang.String actual,
                                            java.lang.String searchString,
                                            java.lang.String replacement,
                                            java.lang.String expected,
                                            java.lang.String message,
                                            java.lang.Object... params)

        Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceIgnoreCaseEquals

        public void replaceIgnoreCaseEquals​(java.lang.String actual,
                                            java.lang.String searchString,
                                            java.lang.String replacement,
                                            java.lang.String expected)

        Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
      • replaceIgnoreCaseNotEquals

        public void replaceIgnoreCaseNotEquals​(java.lang.String actual,
                                               java.lang.String searchString,
                                               java.lang.String replacement,
                                               java.lang.String expected,
                                               java.lang.String message,
                                               java.lang.Object... params)

        Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceIgnoreCaseNotEquals

        public void replaceIgnoreCaseNotEquals​(java.lang.String actual,
                                               java.lang.String searchString,
                                               java.lang.String replacement,
                                               java.lang.String expected)

        Verify if result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
      • replaceNotEquals

        public void replaceNotEquals​(java.lang.String actual,
                                     java.lang.String searchString,
                                     java.lang.String replacement,
                                     java.lang.String expected,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if result of StringUtils.replace(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceNotEquals

        public void replaceNotEquals​(java.lang.String actual,
                                     java.lang.String searchString,
                                     java.lang.String replacement,
                                     java.lang.String expected)

        Verify if result of StringUtils.replace(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
      • replaceOnceEquals

        public void replaceOnceEquals​(java.lang.String actual,
                                      java.lang.String searchString,
                                      java.lang.String replacement,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.replaceOnce(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceOnceEquals

        public void replaceOnceEquals​(java.lang.String actual,
                                      java.lang.String searchString,
                                      java.lang.String replacement,
                                      java.lang.String expected)

        Verify if result of StringUtils.replaceOnce(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
      • replaceOnceIgnoreCaseEquals

        public void replaceOnceIgnoreCaseEquals​(java.lang.String actual,
                                                java.lang.String searchString,
                                                java.lang.String replacement,
                                                java.lang.String expected,
                                                java.lang.String message,
                                                java.lang.Object... params)

        Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceOnceIgnoreCaseEquals

        public void replaceOnceIgnoreCaseEquals​(java.lang.String actual,
                                                java.lang.String searchString,
                                                java.lang.String replacement,
                                                java.lang.String expected)

        Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
      • replaceOnceIgnoreCaseNotEquals

        public void replaceOnceIgnoreCaseNotEquals​(java.lang.String actual,
                                                   java.lang.String searchString,
                                                   java.lang.String replacement,
                                                   java.lang.String expected,
                                                   java.lang.String message,
                                                   java.lang.Object... params)

        Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceOnceIgnoreCaseNotEquals

        public void replaceOnceIgnoreCaseNotEquals​(java.lang.String actual,
                                                   java.lang.String searchString,
                                                   java.lang.String replacement,
                                                   java.lang.String expected)

        Verify if result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
      • replaceOnceNotEquals

        public void replaceOnceNotEquals​(java.lang.String actual,
                                         java.lang.String searchString,
                                         java.lang.String replacement,
                                         java.lang.String expected,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • replaceOnceNotEquals

        public void replaceOnceNotEquals​(java.lang.String actual,
                                         java.lang.String searchString,
                                         java.lang.String replacement,
                                         java.lang.String expected)

        Verify if result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
      • reverseEquals

        public void reverseEquals​(java.lang.String actual,
                                  java.lang.String expected,
                                  java.lang.String message,
                                  java.lang.Object... params)

        Verify if result of StringUtils.reverse(String) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • reverseEquals

        public void reverseEquals​(java.lang.String actual,
                                  java.lang.String expected)

        Verify if result of StringUtils.reverse(String) is equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • reverseNotEquals

        public void reverseNotEquals​(java.lang.String actual,
                                     java.lang.String expected,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if result of StringUtils.reverse(String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • reverseNotEquals

        public void reverseNotEquals​(java.lang.String actual,
                                     java.lang.String expected)

        Verify if result of StringUtils.reverse(String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • rightPadEquals

        public void rightPadEquals​(java.lang.String actual,
                                   int size,
                                   java.lang.String padStr,
                                   java.lang.String expected,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if result of StringUtils.rightPad(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • rightPadEquals

        public void rightPadEquals​(java.lang.String actual,
                                   int size,
                                   java.lang.String padStr,
                                   java.lang.String expected)

        Verify if result of StringUtils.rightPad(String, int, String) is equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
      • rightPadNotEquals

        public void rightPadNotEquals​(java.lang.String actual,
                                      int size,
                                      java.lang.String padStr,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • rightPadNotEquals

        public void rightPadNotEquals​(java.lang.String actual,
                                      int size,
                                      java.lang.String padStr,
                                      java.lang.String expected)

        Verify if result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.

        Parameters:
        actual - value to compare
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
      • rightValueEquals

        public void rightValueEquals​(java.lang.String actual,
                                     int len,
                                     java.lang.String expected,
                                     java.lang.String message,
                                     java.lang.Object... params)

        Verify if result of StringUtils.right(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • rightValueEquals

        public void rightValueEquals​(java.lang.String actual,
                                     int len,
                                     java.lang.String expected)

        Verify if result of StringUtils.right(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
      • rightValueNotEquals

        public void rightValueNotEquals​(java.lang.String actual,
                                        int len,
                                        java.lang.String expected,
                                        java.lang.String message,
                                        java.lang.Object... params)

        Verify if result of StringUtils.right(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • rightValueNotEquals

        public void rightValueNotEquals​(java.lang.String actual,
                                        int len,
                                        java.lang.String expected)

        Verify if result of StringUtils.right(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        len - the length of the required String
      • startsWith

        public void startsWith​(java.lang.String actual,
                               java.lang.String expected,
                               java.lang.String message,
                               java.lang.Object... params)

        Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • startsWith

        public void startsWith​(java.lang.String actual,
                               java.lang.String expected)

        Verify if result of StringUtils.startsWith(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        expected - the expected result.
      • startsWithAny

        public void startsWithAny​(java.lang.String actual,
                                  java.util.List<java.lang.String> searchInputs,
                                  java.lang.String message,
                                  java.lang.Object... params)

        Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • startsWithAny

        public void startsWithAny​(java.lang.String actual,
                                  java.util.List<java.lang.String> searchInputs)

        Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
      • startsWithIgnoreCase

        public void startsWithIgnoreCase​(java.lang.String actual,
                                         java.lang.String expected,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • startsWithIgnoreCase

        public void startsWithIgnoreCase​(java.lang.String actual,
                                         java.lang.String expected)

        Verify if result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true

        Parameters:
        actual - value to compare
        expected - the expected result.
      • startsWithNone

        public void startsWithNone​(java.lang.String actual,
                                   java.util.List<java.lang.String> searchInputs,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • startsWithNone

        public void startsWithNone​(java.lang.String actual,
                                   java.util.List<java.lang.String> searchInputs)

        Verify if result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false

        Parameters:
        actual - value to compare
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
      • stripedEndValue

        public void stripedEndValue​(java.lang.String actual,
                                    java.lang.String stripChars,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if stripEnd(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedEndValue

        public void stripedEndValue​(java.lang.String actual,
                                    java.lang.String stripChars,
                                    java.lang.String expected)

        Verify if stripEnd(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • stripedEndValueNot

        public void stripedEndValueNot​(java.lang.String actual,
                                       java.lang.String stripChars,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if stripEnd(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedEndValueNot

        public void stripedEndValueNot​(java.lang.String actual,
                                       java.lang.String stripChars,
                                       java.lang.String expected)

        Verify if stripEnd(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • stripedStartValue

        public void stripedStartValue​(java.lang.String actual,
                                      java.lang.String stripChars,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if stripStart(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedStartValue

        public void stripedStartValue​(java.lang.String actual,
                                      java.lang.String stripChars,
                                      java.lang.String expected)

        Verify if stripStart(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • stripedStartValueNot

        public void stripedStartValueNot​(java.lang.String actual,
                                         java.lang.String stripChars,
                                         java.lang.String expected,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if stripStart(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedStartValueNot

        public void stripedStartValueNot​(java.lang.String actual,
                                         java.lang.String stripChars,
                                         java.lang.String expected)

        Verify if stripStart(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • stripedValue

        public void stripedValue​(java.lang.String actual,
                                 java.lang.String stripChars,
                                 java.lang.String expected,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if strip(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedValue

        public void stripedValue​(java.lang.String actual,
                                 java.lang.String stripChars,
                                 java.lang.String expected)

        Verify if strip(String) value equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • stripedValueNot

        public void stripedValueNot​(java.lang.String actual,
                                    java.lang.String stripChars,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if strip(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • stripedValueNot

        public void stripedValueNot​(java.lang.String actual,
                                    java.lang.String stripChars,
                                    java.lang.String expected)

        Verify if strip(String) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
      • substringAfterEquals

        public void substringAfterEquals​(java.lang.String actual,
                                         java.lang.String separator,
                                         java.lang.String expected,
                                         java.lang.String message,
                                         java.lang.Object... params)

        Verify if result of StringUtils.substringAfter(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringAfterEquals

        public void substringAfterEquals​(java.lang.String actual,
                                         java.lang.String separator,
                                         java.lang.String expected)

        Verify if result of StringUtils.substringAfter(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringAfterLastEquals

        public void substringAfterLastEquals​(java.lang.String actual,
                                             java.lang.String separator,
                                             java.lang.String expected,
                                             java.lang.String message,
                                             java.lang.Object... params)

        Verify if result of StringUtils.substringAfterLast(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringAfterLastEquals

        public void substringAfterLastEquals​(java.lang.String actual,
                                             java.lang.String separator,
                                             java.lang.String expected)

        Verify if result of StringUtils.substringAfterLast(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringAfterLastNotEquals

        public void substringAfterLastNotEquals​(java.lang.String actual,
                                                java.lang.String separator,
                                                java.lang.String expected,
                                                java.lang.String message,
                                                java.lang.Object... params)

        Verify if result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringAfterLastNotEquals

        public void substringAfterLastNotEquals​(java.lang.String actual,
                                                java.lang.String separator,
                                                java.lang.String expected)

        Verify if result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringAfterNotEquals

        public void substringAfterNotEquals​(java.lang.String actual,
                                            java.lang.String separator,
                                            java.lang.String expected,
                                            java.lang.String message,
                                            java.lang.Object... params)

        Verify if result of StringUtils.substringAfter(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringAfterNotEquals

        public void substringAfterNotEquals​(java.lang.String actual,
                                            java.lang.String separator,
                                            java.lang.String expected)

        Verify if result of StringUtils.substringAfter(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringBeforeEquals

        public void substringBeforeEquals​(java.lang.String actual,
                                          java.lang.String separator,
                                          java.lang.String expected,
                                          java.lang.String message,
                                          java.lang.Object... params)

        Verify if result of StringUtils.substringBefore(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBeforeEquals

        public void substringBeforeEquals​(java.lang.String actual,
                                          java.lang.String separator,
                                          java.lang.String expected)

        Verify if result of StringUtils.substringBefore(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringBeforeLastEquals

        public void substringBeforeLastEquals​(java.lang.String actual,
                                              java.lang.String separator,
                                              java.lang.String expected,
                                              java.lang.String message,
                                              java.lang.Object... params)

        Verify if result of StringUtils.substringBeforeLast(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBeforeLastEquals

        public void substringBeforeLastEquals​(java.lang.String actual,
                                              java.lang.String separator,
                                              java.lang.String expected)

        Verify if result of StringUtils.substringBeforeLast(String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringBeforeLastNotEquals

        public void substringBeforeLastNotEquals​(java.lang.String actual,
                                                 java.lang.String separator,
                                                 java.lang.String expected,
                                                 java.lang.String message,
                                                 java.lang.Object... params)

        Verify if result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBeforeLastNotEquals

        public void substringBeforeLastNotEquals​(java.lang.String actual,
                                                 java.lang.String separator,
                                                 java.lang.String expected)

        Verify if result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringBeforeNotEquals

        public void substringBeforeNotEquals​(java.lang.String actual,
                                             java.lang.String separator,
                                             java.lang.String expected,
                                             java.lang.String message,
                                             java.lang.Object... params)

        Verify if result of StringUtils.substringBefore(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBeforeNotEquals

        public void substringBeforeNotEquals​(java.lang.String actual,
                                             java.lang.String separator,
                                             java.lang.String expected)

        Verify if result of StringUtils.substringBefore(String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        separator - the String to search for, may be null
      • substringBetweenEquals

        public void substringBetweenEquals​(java.lang.String actual,
                                           java.lang.String open,
                                           java.lang.String close,
                                           java.lang.String expected,
                                           java.lang.String message,
                                           java.lang.Object... params)

        Verify if result of StringUtils.substringBetween(String, String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBetweenEquals

        public void substringBetweenEquals​(java.lang.String actual,
                                           java.lang.String open,
                                           java.lang.String close,
                                           java.lang.String expected)

        Verify if result of StringUtils.substringBetween(String, String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • substringBetweenNotEquals

        public void substringBetweenNotEquals​(java.lang.String actual,
                                              java.lang.String open,
                                              java.lang.String close,
                                              java.lang.String expected,
                                              java.lang.String message,
                                              java.lang.Object... params)

        Verify if result of StringUtils.substringBetween(String, String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringBetweenNotEquals

        public void substringBetweenNotEquals​(java.lang.String actual,
                                              java.lang.String open,
                                              java.lang.String close,
                                              java.lang.String expected)

        Verify if result of StringUtils.substringBetween(String, String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • substringEquals

        public void substringEquals​(java.lang.String actual,
                                    int start,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.substring(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringEquals

        public void substringEquals​(java.lang.String actual,
                                    int start,
                                    java.lang.String expected)

        Verify if result of StringUtils.substring(String, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
      • substringEquals

        public void substringEquals​(java.lang.String actual,
                                    int start,
                                    int end,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if result of StringUtils.substring(String, int, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringEquals

        public void substringEquals​(java.lang.String actual,
                                    int start,
                                    int end,
                                    java.lang.String expected)

        Verify if result of StringUtils.substring(String, int, int) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
      • substringNotEquals

        public void substringNotEquals​(java.lang.String actual,
                                       int start,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.substring(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringNotEquals

        public void substringNotEquals​(java.lang.String actual,
                                       int start,
                                       java.lang.String expected)

        Verify if result of StringUtils.substring(String, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
      • substringNotEquals

        public void substringNotEquals​(java.lang.String actual,
                                       int start,
                                       int end,
                                       java.lang.String expected,
                                       java.lang.String message,
                                       java.lang.Object... params)

        Verify if result of StringUtils.substring(String, int, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringNotEquals

        public void substringNotEquals​(java.lang.String actual,
                                       int start,
                                       int end,
                                       java.lang.String expected)

        Verify if result of StringUtils.substring(String, int, int) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
      • substringsBetweenContains

        public void substringsBetweenContains​(java.lang.String actual,
                                              java.lang.String open,
                                              java.lang.String close,
                                              java.lang.String expected,
                                              java.lang.String message,
                                              java.lang.Object... params)

        Verify if result of StringUtils.substringsBetween(String, String, String) contains to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringsBetweenContains

        public void substringsBetweenContains​(java.lang.String actual,
                                              java.lang.String open,
                                              java.lang.String close,
                                              java.lang.String expected)

        Verify if result of StringUtils.substringsBetween(String, String, String) contains to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • substringsBetweenEquals

        public void substringsBetweenEquals​(java.lang.String actual,
                                            java.lang.String open,
                                            java.lang.String close,
                                            java.util.List<java.lang.String> expected,
                                            java.lang.String message,
                                            java.lang.Object... params)

        Verify if result of StringUtils.substringsBetween(String, String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringsBetweenEquals

        public void substringsBetweenEquals​(java.lang.String actual,
                                            java.lang.String open,
                                            java.lang.String close,
                                            java.util.List<java.lang.String> expected)

        Verify if result of StringUtils.substringsBetween(String, String, String) equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • substringsBetweenNotContains

        public void substringsBetweenNotContains​(java.lang.String actual,
                                                 java.lang.String open,
                                                 java.lang.String close,
                                                 java.lang.String expected,
                                                 java.lang.String message,
                                                 java.lang.Object... params)

        Verify if result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringsBetweenNotContains

        public void substringsBetweenNotContains​(java.lang.String actual,
                                                 java.lang.String open,
                                                 java.lang.String close,
                                                 java.lang.String expected)

        Verify if result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • substringsBetweenNotEquals

        public void substringsBetweenNotEquals​(java.lang.String actual,
                                               java.lang.String open,
                                               java.lang.String close,
                                               java.util.List<java.lang.String> expected,
                                               java.lang.String message,
                                               java.lang.Object... params)

        Verify if result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • substringsBetweenNotEquals

        public void substringsBetweenNotEquals​(java.lang.String actual,
                                               java.lang.String open,
                                               java.lang.String close,
                                               java.util.List<java.lang.String> expected)

        Verify if result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
      • trimmedValue

        public void trimmedValue​(java.lang.String actual,
                                 java.lang.String expected,
                                 java.lang.String message,
                                 java.lang.Object... params)

        Verify if trim() value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • trimmedValue

        public void trimmedValue​(java.lang.String actual,
                                 java.lang.String expected)

        Verify if trim() value equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • trimmedValueNot

        public void trimmedValueNot​(java.lang.String actual,
                                    java.lang.String expected,
                                    java.lang.String message,
                                    java.lang.Object... params)

        Verify if trim() value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • trimmedValueNot

        public void trimmedValueNot​(java.lang.String actual,
                                    java.lang.String expected)

        Verify if trim() value NOT equals the expected value.

        Parameters:
        actual - value to compare
        expected - the expected result.
      • truncatedValue

        public void truncatedValue​(java.lang.String actual,
                                   int maxWidth,
                                   java.lang.String expected,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if truncate(Int) value equals the expected value.

        Parameters:
        actual - value to compare
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • truncatedValue

        public void truncatedValue​(java.lang.String actual,
                                   int maxWidth,
                                   java.lang.String expected)

        Verify if truncate(Int) value equals the expected value.

        Parameters:
        actual - value to compare
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
      • truncatedValue

        public void truncatedValue​(java.lang.String actual,
                                   int offset,
                                   int maxWidth,
                                   java.lang.String expected,
                                   java.lang.String message,
                                   java.lang.Object... params)

        Verify if truncate(Int, Int) value equals the expected value.

        Parameters:
        actual - value to compare
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • truncatedValue

        public void truncatedValue​(java.lang.String actual,
                                   int offset,
                                   int maxWidth,
                                   java.lang.String expected)

        Verify if truncate(Int, Int) value equals the expected value.

        Parameters:
        actual - value to compare
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
      • truncatedValueNot

        public void truncatedValueNot​(java.lang.String actual,
                                      int maxWidth,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if truncate(Int) value equals the expected value.

        Parameters:
        actual - value to compare
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • truncatedValueNot

        public void truncatedValueNot​(java.lang.String actual,
                                      int maxWidth,
                                      java.lang.String expected)

        Verify if truncate(Int) value equals the expected value.

        Parameters:
        actual - value to compare
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
      • truncatedValueNot

        public void truncatedValueNot​(java.lang.String actual,
                                      int offset,
                                      int maxWidth,
                                      java.lang.String expected,
                                      java.lang.String message,
                                      java.lang.Object... params)

        Verify if truncate(Int, Int) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        message - information about the propose of this verification.
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • truncatedValueNot

        public void truncatedValueNot​(java.lang.String actual,
                                      int offset,
                                      int maxWidth,
                                      java.lang.String expected)

        Verify if truncate(Int, Int) value NOT equals the expected value.

        Parameters:
        actual - value to compare
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.