|
15 | 15 | */
|
16 | 16 | package com.google.common.truth;
|
17 | 17 |
|
18 |
| -import static com.google.common.truth.Truth.assertAbout; |
19 |
| - |
20 | 18 | import com.google.common.annotations.GwtIncompatible;
|
21 | 19 | import com.google.j2objc.annotations.J2ObjCIncompatible;
|
22 | 20 | import java.nio.file.Path;
|
|
40 | 38 | * such static imports will become ambiguous in Truth 1.4.2, breaking your build.
|
41 | 39 | */
|
42 | 40 | @Deprecated
|
43 |
| -// The methods here are no more dangerous that wherever the user got the (e.g.) Stream. |
44 |
| -@SuppressWarnings("Java7ApiChecker") |
| 41 | +@SuppressWarnings({ |
| 42 | + // The methods here are no more dangerous that wherever the user got the (e.g.) Stream. |
| 43 | + "Java7ApiChecker", |
| 44 | + // Replacing "Truth.assertThat" with "assertThat" would produce an infinite loop. |
| 45 | + "StaticImportPreferred", |
| 46 | +}) |
45 | 47 | public final class Truth8 {
|
46 | 48 | @SuppressWarnings("AssertAboutOptionals") // suggests infinite recursion
|
47 | 49 | public static OptionalSubject assertThat(@Nullable Optional<?> target) {
|
48 |
| - return assertAbout(OptionalSubject.optionals()).that(target); |
| 50 | + return Truth.assertThat(target); |
49 | 51 | }
|
50 | 52 |
|
51 | 53 | public static OptionalIntSubject assertThat(@Nullable OptionalInt target) {
|
52 |
| - return assertAbout(OptionalIntSubject.optionalInts()).that(target); |
| 54 | + return Truth.assertThat(target); |
53 | 55 | }
|
54 | 56 |
|
55 | 57 | public static OptionalLongSubject assertThat(@Nullable OptionalLong target) {
|
56 |
| - return assertAbout(OptionalLongSubject.optionalLongs()).that(target); |
| 58 | + return Truth.assertThat(target); |
57 | 59 | }
|
58 | 60 |
|
59 | 61 | public static OptionalDoubleSubject assertThat(@Nullable OptionalDouble target) {
|
60 |
| - return assertAbout(OptionalDoubleSubject.optionalDoubles()).that(target); |
| 62 | + return Truth.assertThat(target); |
61 | 63 | }
|
62 | 64 |
|
63 | 65 | public static StreamSubject assertThat(@Nullable Stream<?> target) {
|
64 |
| - return assertAbout(StreamSubject.streams()).that(target); |
| 66 | + return Truth.assertThat(target); |
65 | 67 | }
|
66 | 68 |
|
67 | 69 | public static IntStreamSubject assertThat(@Nullable IntStream target) {
|
68 |
| - return assertAbout(IntStreamSubject.intStreams()).that(target); |
| 70 | + return Truth.assertThat(target); |
69 | 71 | }
|
70 | 72 |
|
71 | 73 | public static LongStreamSubject assertThat(@Nullable LongStream target) {
|
72 |
| - return assertAbout(LongStreamSubject.longStreams()).that(target); |
| 74 | + return Truth.assertThat(target); |
73 | 75 | }
|
74 | 76 |
|
75 | 77 | @GwtIncompatible
|
76 | 78 | @J2ObjCIncompatible
|
77 | 79 | @J2ktIncompatible
|
78 | 80 | public static PathSubject assertThat(@Nullable Path target) {
|
79 |
| - return assertAbout(PathSubject.paths()).that(target); |
| 81 | + return Truth.assertThat(target); |
80 | 82 | }
|
81 | 83 |
|
82 | 84 | private Truth8() {}
|
|
0 commit comments