|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StringAssert | |
---|---|
org.fest.assertions.api |
Uses of StringAssert in org.fest.assertions.api |
---|
Methods in org.fest.assertions.api that return StringAssert | |
---|---|
static StringAssert |
Assertions.assertThat(String actual)
Creates a new instance of . |
StringAssert |
StringAssert.contains(String sequence)
Verifies that the actual String contains the given sequence. |
StringAssert |
StringAssert.containsIgnoringCase(String sequence)
Verifies that the actual String contains the given sequence, ignoring case considerations. |
StringAssert |
StringAssert.doesNotContain(String sequence)
Verifies that the actual String does not contain the given sequence. |
StringAssert |
StringAssert.doesNotMatch(Pattern pattern)
Verifies that the actual String does not match the given regular expression. |
StringAssert |
StringAssert.doesNotMatch(String regex)
Verifies that the actual String does not match the given regular expression. |
StringAssert |
StringAssert.endsWith(String suffix)
Verifies that the actual String ends with the given suffix. |
StringAssert |
StringAssert.hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one. |
StringAssert |
StringAssert.isEqualToIgnoringCase(String expected)
Verifies that the actual String is equal to the given one, ignoring case considerations. |
StringAssert |
StringAssert.isNotEmpty()
Verifies that the actual group of values is not empty. |
StringAssert |
StringAssert.matches(Pattern pattern)
Verifies that the actual String matches the given regular expression. |
StringAssert |
StringAssert.matches(String regex)
Verifies that the actual String matches the given regular expression. |
StringAssert |
StringAssert.startsWith(String prefix)
Verifies that the actual String starts with the given prefix. |
StringAssert |
StringAssert.usingComparator(Comparator<?> customComparator)
|
StringAssert |
StringAssert.usingDefaultComparator()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |