- assertContains(String, String) - Static method in class de.unkrig.commons.junit4.AssertString
-
Fails unless the actual string contains the given expectedInfix.
- assertContains(String, String, String) - Static method in class de.unkrig.commons.junit4.AssertString
-
Fails with the given message unless the actual string matches the given
expectedRegex.
- assertContains(List<String>, List<String>) - Static method in class de.unkrig.commons.junit4.AssertString
-
Fails unless each of the actuals contains the respective infix.
- assertContains(String, List<String>, List<String>) - Static method in class de.unkrig.commons.junit4.AssertString
-
Fails with the given message unless each of the actuals contains the respective infix.
- assertFind(String, String) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails unless the expectedRegex can be found at least once in the actual string.
- assertFind(String, String, String) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails with the given message unless the expectedRegex can be found at least once in the
actual string.
- assertMatches(String, String) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails unless the actual string matches the given expectedRegex.
- assertMatches(String, String, String) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails with the given message unless the actual string matches the given
expectedRegex.
- assertMatches(List<String>, String...) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails unless each of the actuals matches the respective regex.
- assertMatches(String, List<String>, String...) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails unless each of the actuals matches the respective regex.
- assertMatches(List<String>, List<String>) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails unless each of the actuals matches the respective regex.
- assertMatches(String, List<String>, List<String>) - Static method in class de.unkrig.commons.junit4.AssertRegex
-
Fails with the given message unless each of the actuals matches the respective regex.
- AssertRegex - Class in de.unkrig.commons.junit4
-
Utility methods related to JUNIT and java.util.regex.
- AssertString - Class in de.unkrig.commons.junit4
-
Utility methods related to JUNIT and java.lang.Strings.