Package com.google.common.truth
Class StringSubject
Propositions for string subjects.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionfinal classCase insensitive propositions for string subjects.Nested classes/interfaces inherited from class com.google.common.truth.Subject
Subject.EqualityCheck, Subject.Factory<SubjectT extends Subject,ActualT> -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedStringSubject(FailureMetadata metadata, String string) Constructor for use by subclasses. -
Method Summary
Modifier and TypeMethodDescriptionvoidcontains(CharSequence string) Fails if the string does not contain the given sequence.voidcontainsMatch(String regex) Fails if the string does not contain a match on the given regex.voidcontainsMatch(Pattern regex) Fails if the string does not contain a match on the given regex.voiddoesNotContain(CharSequence string) Fails if the string contains the given sequence.voiddoesNotContainMatch(String regex) Fails if the string contains a match on the given regex.voiddoesNotContainMatch(Pattern regex) Fails if the string contains a match on the given regex.voiddoesNotMatch(String regex) Fails if the string matches the given regex.voiddoesNotMatch(Pattern regex) Fails if the string matches the given regex.voidFails if the string does not end with the given string.voidhasLength(int expectedLength) Fails if the string does not have the given length.Returns aStringSubject-like instance that will ignore the case of the characters.voidisEmpty()Fails if the string is not equal to the zero-length "empty string."final voidDeprecated.voidFails if the string is equal to the zero-length "empty string."voidFails if the string does not match the given regex.voidFails if the string does not match the given regex.voidstartsWith(String string) Fails if the string does not start with the given string.Methods inherited from class com.google.common.truth.ComparableSubject
isAtLeast, isAtMost, isGreaterThan, isIn, isLessThan, isNotInMethods inherited from class com.google.common.truth.Subject
actual, actualCustomStringRepresentation, actualCustomStringRepresentationForPackageMembersToCall, butWas, check, check, checkNoNeedToDisplayBothValues, equals, fail, fail, fail, failEqualityCheckForEqualsWithoutDescription, failWithActual, failWithActual, failWithActual, failWithActual, failWithBadResults, failWithCustomSubject, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutSubject, hashCode, ignoreCheck, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameInstanceAs, isNull, isSameInstanceAs, toString, typeDescription
-
Field Details
-
actual
-
-
Constructor Details
-
StringSubject
Constructor for use by subclasses. If you want to create an instance of this class itself, callcheck(...).that(actual).
-
-
Method Details
-
isEquivalentAccordingToCompareTo
Deprecated.UseSubject.isEqualTo(java.lang.Object)instead. String comparison is consistent with equality.Description copied from class:ComparableSubjectChecks that the subject is equivalent tootheraccording toComparable.compareTo(T), (i.e., checks thata.comparesTo(b) == 0).Note: Do not use this method for checking object equality. Instead, use
Subject.isEqualTo(Object).- Overrides:
isEquivalentAccordingToCompareToin classComparableSubject<String>
-
hasLength
public void hasLength(int expectedLength) Fails if the string does not have the given length. -
isEmpty
public void isEmpty()Fails if the string is not equal to the zero-length "empty string." -
isNotEmpty
public void isNotEmpty()Fails if the string is equal to the zero-length "empty string." -
contains
Fails if the string does not contain the given sequence. -
doesNotContain
Fails if the string contains the given sequence. -
startsWith
Fails if the string does not start with the given string. -
endsWith
Fails if the string does not end with the given string. -
matches
Fails if the string does not match the given regex. -
matches
Fails if the string does not match the given regex. -
doesNotMatch
Fails if the string matches the given regex. -
doesNotMatch
Fails if the string matches the given regex. -
containsMatch
Fails if the string does not contain a match on the given regex. -
containsMatch
Fails if the string does not contain a match on the given regex. -
doesNotContainMatch
Fails if the string contains a match on the given regex. -
doesNotContainMatch
Fails if the string contains a match on the given regex. -
ignoringCase
Returns aStringSubject-like instance that will ignore the case of the characters.Character equality ignoring case is defined as follows: Characters must be equal either after calling
Character.toLowerCase(char)or after callingCharacter.toUpperCase(char). Note that this is independent of any locale.
-
Subject.isEqualTo(java.lang.Object)instead.