Package com.google.common.truth
Class StringSubject
- java.lang.Object
-
- com.google.common.truth.Subject<S,T>
-
- com.google.common.truth.ComparableSubject<StringSubject,java.lang.String>
-
- com.google.common.truth.StringSubject
-
public class StringSubject extends ComparableSubject<StringSubject,java.lang.String>
Propositions for string subjects.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.truth.Subject
Subject.HasField
-
-
Field Summary
Fields Modifier and Type Field Description static SubjectFactory<StringSubject,java.lang.String>STRINGDeprecated.Use afor eachstyle loop over yourIterable<Integer>instead.-
Fields inherited from class com.google.common.truth.Subject
failureStrategy
-
-
Constructor Summary
Constructors Constructor Description StringSubject(FailureStrategy failureStrategy, java.lang.String string)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontains(java.lang.CharSequence string)Fails if the string does not contain the given sequence.voidcontainsMatch(java.lang.String regex)Fails if the string does not contain a match on the given regex.voidcontainsMatch(java.util.regex.Pattern pattern)Fails if the string does not contain a match on the given regex.voiddoesNotContain(java.lang.CharSequence string)Fails if the string contains the given sequence.voiddoesNotContainMatch(java.lang.String regex)Fails if the string contains a match on the given regex.voiddoesNotContainMatch(java.util.regex.Pattern pattern)Fails if the string contains a match on the given regex.voiddoesNotMatch(java.lang.String regex)Fails if the string matches the given regex.voiddoesNotMatch(java.util.regex.Pattern regex)Fails if the string matches the given regex.voidendsWith(java.lang.String string)Fails if the string does not end with the given string.protected java.lang.StringgetDisplaySubject()voidhasLength(int expectedLength)Fails if the string does not have the given length.voidis(java.lang.Object expected)voidisEmpty()Fails if the string is not equal to the zero-length "empty string."voidisEqualTo(java.lang.Object expected)Fails if the subject is not equal to the given object.voidisNotEmpty()Fails if the string is equal to the zero-length "empty string."voidisNull()Fails if the string is not null.voidmatches(java.lang.String regex)Fails if the string does not match the given regex.voidmatches(java.util.regex.Pattern regex)Fails if the string does not match the given regex.private static java.lang.Stringquote(java.lang.CharSequence toBeWrapped)voidstartsWith(java.lang.String string)Fails if the string does not start with the given string.-
Methods inherited from class com.google.common.truth.ComparableSubject
comparesEqualTo, isAtLeast, isAtMost, isGreaterThan, isIn, isLessThan, isNotIn
-
Methods inherited from class com.google.common.truth.Subject
check, equals, fail, fail, fail, failWithBadResults, failWithCustomSubject, failWithoutSubject, failWithRawMessage, getSubject, hasField, hashCode, internalCustomName, isA, isInstanceOf, isNotA, isNotEqualTo, isNotInstanceOf, isNotNull, isNotSameAs, isSameAs, labeled, named
-
-
-
-
Field Detail
-
STRING
@Deprecated public static final SubjectFactory<StringSubject,java.lang.String> STRING
Deprecated.Use afor eachstyle loop over yourIterable<Integer>instead.
-
-
Constructor Detail
-
StringSubject
public StringSubject(FailureStrategy failureStrategy, java.lang.String string)
-
-
Method Detail
-
getDisplaySubject
protected java.lang.String getDisplaySubject()
- Overrides:
getDisplaySubjectin classSubject<StringSubject,java.lang.String>
-
is
public void is(java.lang.Object expected)
- Overrides:
isin classSubject<StringSubject,java.lang.String>
-
isEqualTo
public void isEqualTo(java.lang.Object expected)
Description copied from class:SubjectFails if the subject is not equal to the given object.- Overrides:
isEqualToin classSubject<StringSubject,java.lang.String>
-
isNull
public void isNull()
Fails if the string is not null.- Overrides:
isNullin classSubject<StringSubject,java.lang.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
public void contains(java.lang.CharSequence string)
Fails if the string does not contain the given sequence.
-
doesNotContain
public void doesNotContain(java.lang.CharSequence string)
Fails if the string contains the given sequence.
-
startsWith
public void startsWith(java.lang.String string)
Fails if the string does not start with the given string.
-
endsWith
public void endsWith(java.lang.String string)
Fails if the string does not end with the given string.
-
matches
@GwtIncompatible("java.util.regex.Pattern") public void matches(java.lang.String regex)Fails if the string does not match the given regex.
-
matches
@GwtIncompatible("java.util.regex.Pattern") public void matches(java.util.regex.Pattern regex)Fails if the string does not match the given regex.
-
doesNotMatch
@GwtIncompatible("java.util.regex.Pattern") public void doesNotMatch(java.lang.String regex)Fails if the string matches the given regex.
-
doesNotMatch
@GwtIncompatible("java.util.regex.Pattern") public void doesNotMatch(java.util.regex.Pattern regex)Fails if the string matches the given regex.
-
containsMatch
@GwtIncompatible("java.util.regex.Pattern") public void containsMatch(java.util.regex.Pattern pattern)Fails if the string does not contain a match on the given regex.
-
containsMatch
@GwtIncompatible("java.util.regex.Pattern") public void containsMatch(java.lang.String regex)Fails if the string does not contain a match on the given regex.
-
doesNotContainMatch
@GwtIncompatible("java.util.regex.Pattern") public void doesNotContainMatch(java.util.regex.Pattern pattern)Fails if the string contains a match on the given regex.
-
doesNotContainMatch
@GwtIncompatible("java.util.regex.Pattern") public void doesNotContainMatch(java.lang.String regex)Fails if the string contains a match on the given regex.
-
quote
private static java.lang.String quote(java.lang.CharSequence toBeWrapped)
-
-