Package com.google.common.truth
Class Truth8
- java.lang.Object
-
- com.google.common.truth.Truth8
-
@Deprecated public final class Truth8 extends Object
Deprecated.Instead of this class's methods, use the identical methods declared in the mainTruthclass. In most cases, you can migrate your whole project mechanically:git grep -l Truth8 | xargs perl -pi -e 's/\bTruth8\b/Truth/g;'Migration is important if you static importassertThat: If you do not migrate, such static imports will become ambiguous in Truth 1.4.2, breaking your build.The obsolete entry point for assertions about Java 8 types.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static PathSubjectassertThat(@Nullable Path actual)Deprecated.static OptionalSubjectassertThat(@Nullable Optional<?> actual)Deprecated.static OptionalDoubleSubjectassertThat(@Nullable OptionalDouble actual)Deprecated.static OptionalIntSubjectassertThat(@Nullable OptionalInt actual)Deprecated.static OptionalLongSubjectassertThat(@Nullable OptionalLong actual)Deprecated.static IntStreamSubjectassertThat(@Nullable IntStream actual)Deprecated.static LongStreamSubjectassertThat(@Nullable LongStream actual)Deprecated.static StreamSubjectassertThat(@Nullable Stream<?> actual)Deprecated.
-
-
-
Method Detail
-
assertThat
public static OptionalSubject assertThat(@Nullable Optional<?> actual)
Deprecated.
-
assertThat
public static OptionalIntSubject assertThat(@Nullable OptionalInt actual)
Deprecated.
-
assertThat
public static OptionalLongSubject assertThat(@Nullable OptionalLong actual)
Deprecated.
-
assertThat
public static OptionalDoubleSubject assertThat(@Nullable OptionalDouble actual)
Deprecated.
-
assertThat
public static StreamSubject assertThat(@Nullable Stream<?> actual)
Deprecated.
-
assertThat
public static IntStreamSubject assertThat(@Nullable IntStream actual)
Deprecated.
-
assertThat
public static LongStreamSubject assertThat(@Nullable LongStream actual)
Deprecated.
-
assertThat
@GwtIncompatible @J2ObjCIncompatible public static PathSubject assertThat(@Nullable Path actual)
Deprecated.
-
-