Package com.google.common.truth
Class StandardSubjectBuilder
- java.lang.Object
- 
- com.google.common.truth.StandardSubjectBuilder
 
- 
- Direct Known Subclasses:
- Expect
 
 public class StandardSubjectBuilder extends Object In a fluent assertion chain, an object with which you can do any of the following:- Set an optional message with withMessage(java.lang.String).
- Specify the type of Subjectto create withabout(Subject.Factory).
- For the types of Subjectbuilt into Truth, directly specify the value under test withthat(Object).
 For more information about the methods in this class, see this FAQ entry. For people extending TruthYou won't extend this type. When you write a custom subject, see our doc on extensions. 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <CustomSubjectBuilderT extends CustomSubjectBuilder>
 CustomSubjectBuilderTabout(CustomSubjectBuilder.Factory<CustomSubjectBuilderT> factory)<S extends Subject,A>
 SimpleSubjectBuilder<S,A>about(Subject.Factory<S,A> factory)Given a factory for someSubjectclass, returns a builder whosethat(actual)method creates instances of that class.voidfail()Reports a failure.static StandardSubjectBuilderforCustomFailureStrategy(FailureStrategy failureStrategy)Returns a new instance that invokes the givenFailureStrategywhen a check fails.PrimitiveBooleanArraySubjectthat(boolean[] actual)PrimitiveByteArraySubjectthat(byte[] actual)PrimitiveCharArraySubjectthat(char[] actual)PrimitiveDoubleArraySubjectthat(double[] actual)PrimitiveFloatArraySubjectthat(float[] actual)PrimitiveIntArraySubjectthat(int[] actual)PrimitiveLongArraySubjectthat(long[] actual)PrimitiveShortArraySubjectthat(short[] actual)GuavaOptionalSubjectthat(@Nullable Optional<?> actual)MultimapSubjectthat(@Nullable Multimap<?,?> actual)MultisetSubjectthat(@Nullable Multiset<?> actual)TableSubjectthat(@Nullable Table<?,?,?> actual)<ComparableT extends Comparable<?>>
 ComparableSubject<ComparableT>that(@Nullable ComparableT actual)BooleanSubjectthat(@Nullable Boolean actual)ClassSubjectthat(@Nullable Class<?> actual)DoubleSubjectthat(@Nullable Double actual)FloatSubjectthat(@Nullable Float actual)IntegerSubjectthat(@Nullable Integer actual)IterableSubjectthat(@Nullable Iterable<?> actual)LongSubjectthat(@Nullable Long actual)Subjectthat(@Nullable Object actual)StringSubjectthat(@Nullable String actual)ThrowableSubjectthat(@Nullable Throwable actual)BigDecimalSubjectthat(@Nullable BigDecimal actual)MapSubjectthat(@Nullable Map<?,?> actual)<T> ObjectArraySubject<T>that(@Nullable T[] actual)StandardSubjectBuilderwithMessage(@Nullable String messageToPrepend)Returns a new instance that will output the given message before the main failure message.StandardSubjectBuilderwithMessage(String format, Object... args)Returns a new instance that will output the given message before the main failure message.
 
- 
- 
- 
Method Detail- 
forCustomFailureStrategypublic static StandardSubjectBuilder forCustomFailureStrategy(FailureStrategy failureStrategy) Returns a new instance that invokes the givenFailureStrategywhen a check fails. Most users should not need this. If you think you do, see the documentation onFailureStrategy.
 - 
thatpublic final <ComparableT extends Comparable<?>> ComparableSubject<ComparableT> that(@Nullable ComparableT actual) 
 - 
thatpublic final BigDecimalSubject that(@Nullable BigDecimal actual) 
 - 
that@GwtIncompatible("ClassSubject.java") public final ClassSubject that(@Nullable Class<?> actual) 
 - 
thatpublic final ThrowableSubject that(@Nullable Throwable actual) 
 - 
thatpublic final LongSubject that(@Nullable Long actual) 
 - 
thatpublic final DoubleSubject that(@Nullable Double actual) 
 - 
thatpublic final FloatSubject that(@Nullable Float actual) 
 - 
thatpublic final IntegerSubject that(@Nullable Integer actual) 
 - 
thatpublic final BooleanSubject that(@Nullable Boolean actual) 
 - 
thatpublic final StringSubject that(@Nullable String actual) 
 - 
thatpublic final IterableSubject that(@Nullable Iterable<?> actual) 
 - 
thatpublic final <T> ObjectArraySubject<T> that(@Nullable T[] actual) 
 - 
thatpublic final PrimitiveBooleanArraySubject that(boolean[] actual) 
 - 
thatpublic final PrimitiveShortArraySubject that(short[] actual) 
 - 
thatpublic final PrimitiveIntArraySubject that(int[] actual) 
 - 
thatpublic final PrimitiveLongArraySubject that(long[] actual) 
 - 
thatpublic final PrimitiveCharArraySubject that(char[] actual) 
 - 
thatpublic final PrimitiveByteArraySubject that(byte[] actual) 
 - 
thatpublic final PrimitiveFloatArraySubject that(float[] actual) 
 - 
thatpublic final PrimitiveDoubleArraySubject that(double[] actual) 
 - 
thatpublic final GuavaOptionalSubject that(@Nullable Optional<?> actual) 
 - 
thatpublic final MapSubject that(@Nullable Map<?,?> actual) 
 - 
thatpublic final MultimapSubject that(@Nullable Multimap<?,?> actual) 
 - 
thatpublic final MultisetSubject that(@Nullable Multiset<?> actual) 
 - 
thatpublic final TableSubject that(@Nullable Table<?,?,?> actual) 
 - 
withMessagepublic final StandardSubjectBuilder withMessage(@Nullable String messageToPrepend) Returns a new instance that will output the given message before the main failure message. If this method is called multiple times, the messages will appear in the order that they were specified.
 - 
withMessagepublic final StandardSubjectBuilder withMessage(String format, Object... args) Returns a new instance that will output the given message before the main failure message. If this method is called multiple times, the messages will appear in the order that they were specified.Note: the arguments will be substituted into the format template using Strings.lenientFormat. Note this only supports the%sspecifier.- Throws:
- IllegalArgumentException- if the number of placeholders in the format string does not equal the number of given arguments
 
 - 
aboutpublic final <S extends Subject,A> SimpleSubjectBuilder<S,A> about(Subject.Factory<S,A> factory) Given a factory for someSubjectclass, returns a builder whosethat(actual)method creates instances of that class. Created subjects use the previously set failure strategy and any previously set failure message.
 - 
aboutpublic final <CustomSubjectBuilderT extends CustomSubjectBuilder> CustomSubjectBuilderT about(CustomSubjectBuilder.Factory<CustomSubjectBuilderT> factory) 
 - 
failpublic final void fail() Reports a failure.To set a message, first call withMessage(java.lang.String)(or, more commonly, use the shortcutTruth.assertWithMessage(java.lang.String)).
 
- 
 
-