Skip to content

Commit 59e7a50

Browse files
cpovirkGoogle Java Core Libraries
authored and
Google Java Core Libraries
committedApr 18, 2024·
Deprecate Subject.Factory methods for Java 8 types.
They are no longer necessary. RELNOTES=Deprecated `Subject.Factory` methods for Java 8 types. We won't remove them, but you can simplify your code by migrating off them: Just replace `assertAbout(foos()).that(foo)` with `assertThat(foo)`. PiperOrigin-RevId: 625870580
1 parent b74edad commit 59e7a50

9 files changed

+67
-18
lines changed
 

‎core/src/main/java/com/google/common/truth/IntStreamSubject.java

+6
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ protected String actualCustomStringRepresentation() {
6565
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
6666
* assertWithMessage(...).about(intStreams()).that(stream)....}. Now, you can perform assertions
6767
* like that without the {@code about(...)} call.
68+
*
69+
* @deprecated Instead of {@code about(intStreams()).that(...)}, use just {@code that(...)}.
70+
* Similarly, instead of {@code assertAbout(intStreams()).that(...)}, use just {@code
71+
* assertThat(...)}.
6872
*/
73+
@Deprecated
74+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
6975
public static Factory<IntStreamSubject, IntStream> intStreams() {
7076
return IntStreamSubject::new;
7177
}

‎core/src/main/java/com/google/common/truth/LongStreamSubject.java

+6
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ protected String actualCustomStringRepresentation() {
6565
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
6666
* assertWithMessage(...).about(longStreams()).that(stream)....}. Now, you can perform assertions
6767
* like that without the {@code about(...)} call.
68+
*
69+
* @deprecated Instead of {@code about(longStreams()).that(...)}, use just {@code that(...)}.
70+
* Similarly, instead of {@code assertAbout(longStreams()).that(...)}, use just {@code
71+
* assertThat(...)}.
6872
*/
73+
@Deprecated
74+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
6975
public static Factory<LongStreamSubject, LongStream> longStreams() {
7076
return LongStreamSubject::new;
7177
}

‎core/src/main/java/com/google/common/truth/OptionalDoubleSubject.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,14 @@ public void hasValue(double expected) {
8585
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
8686
* assertWithMessage(...).about(optionalDoubles()).that(optional)....}. Now, you can perform
8787
* assertions like that without the {@code about(...)} call.
88+
*
89+
* @deprecated Instead of {@code about(optionalDoubles()).that(...)}, use just {@code that(...)}.
90+
* Similarly, instead of {@code assertAbout(optionalDoubles()).that(...)}, use just {@code
91+
* assertThat(...)}.
8892
*/
89-
public static Subject.Factory<OptionalDoubleSubject, OptionalDouble> optionalDoubles() {
93+
@Deprecated
94+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
95+
public static Factory<OptionalDoubleSubject, OptionalDouble> optionalDoubles() {
9096
return (metadata, subject) -> new OptionalDoubleSubject(metadata, subject, "optionalDouble");
9197
}
9298
}

‎core/src/main/java/com/google/common/truth/OptionalIntSubject.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,14 @@ public void hasValue(int expected) {
7878
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
7979
* assertWithMessage(...).about(optionalInts()).that(optional)....}. Now, you can perform
8080
* assertions like that without the {@code about(...)} call.
81+
*
82+
* @deprecated Instead of {@code about(optionalInts()).that(...)}, use just {@code that(...)}.
83+
* Similarly, instead of {@code assertAbout(optionalInts()).that(...)}, use just {@code
84+
* assertThat(...)}.
8185
*/
82-
public static Subject.Factory<OptionalIntSubject, OptionalInt> optionalInts() {
86+
@Deprecated
87+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
88+
public static Factory<OptionalIntSubject, OptionalInt> optionalInts() {
8389
return (metadata, subject) -> new OptionalIntSubject(metadata, subject, "optionalInt");
8490
}
8591
}

‎core/src/main/java/com/google/common/truth/OptionalLongSubject.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,14 @@ public void hasValue(long expected) {
7878
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
7979
* assertWithMessage(...).about(optionalLongs()).that(optional)....}. Now, you can perform
8080
* assertions like that without the {@code about(...)} call.
81+
*
82+
* @deprecated Instead of {@code about(optionalLongs()).that(...)}, use just {@code that(...)}.
83+
* Similarly, instead of {@code assertAbout(optionalLongs()).that(...)}, use just {@code
84+
* assertThat(...)}.
8185
*/
82-
public static Subject.Factory<OptionalLongSubject, OptionalLong> optionalLongs() {
86+
@Deprecated
87+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
88+
public static Factory<OptionalLongSubject, OptionalLong> optionalLongs() {
8389
return (metadata, subject) -> new OptionalLongSubject(metadata, subject, "optionalLong");
8490
}
8591
}

‎core/src/main/java/com/google/common/truth/OptionalSubject.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,14 @@ public void hasValue(@Nullable Object expected) {
9090
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
9191
* assertWithMessage(...).about(paths()).that(path)....}. Now, you can perform assertions like
9292
* that without the {@code about(...)} call.
93+
*
94+
* @deprecated Instead of {@code about(optionals()).that(...)}, use just {@code that(...)}.
95+
* Similarly, instead of {@code assertAbout(optionals()).that(...)}, use just {@code
96+
* assertThat(...)}.
9397
*/
94-
public static Subject.Factory<OptionalSubject, Optional<?>> optionals() {
98+
@Deprecated
99+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
100+
public static Factory<OptionalSubject, Optional<?>> optionals() {
95101
return (metadata, subject) -> new OptionalSubject(metadata, subject, "optional");
96102
}
97103
}

‎core/src/main/java/com/google/common/truth/PathSubject.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,13 @@ public final class PathSubject extends Subject {
3636
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
3737
* assertWithMessage(...).about(intStreams()).that(stream)....}. Now, you can perform assertions
3838
* like that without the {@code about(...)} call.
39+
*
40+
* @deprecated Instead of {@code about(paths()).that(...)}, use just {@code that(...)}. Similarly,
41+
* instead of {@code assertAbout(paths()).that(...)}, use just {@code assertThat(...)}.
3942
*/
40-
public static Subject.Factory<PathSubject, Path> paths() {
43+
@Deprecated
44+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
45+
public static Factory<PathSubject, Path> paths() {
4146
return PathSubject::new;
4247
}
4348
}

‎core/src/main/java/com/google/common/truth/StreamSubject.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,14 @@ protected String actualCustomStringRepresentation() {
9292
* Obsolete factory instance. This factory was previously necessary for assertions like {@code
9393
* assertWithMessage(...).about(streams()).that(stream)....}. Now, you can perform assertions like
9494
* that without the {@code about(...)} call.
95+
*
96+
* @deprecated Instead of {@code about(streams()).that(...)}, use just {@code that(...)}.
97+
* Similarly, instead of {@code assertAbout(streams()).that(...)}, use just {@code
98+
* assertThat(...)}.
9599
*/
96-
public static Subject.Factory<StreamSubject, Stream<?>> streams() {
100+
@Deprecated
101+
@SuppressWarnings("InlineMeSuggester") // We want users to remove the surrounding call entirely.
102+
public static Factory<StreamSubject, Stream<?>> streams() {
97103
return StreamSubject::new;
98104
}
99105

‎core/src/main/java/com/google/common/truth/Truth8.java

+14-12
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*/
1616
package com.google.common.truth;
1717

18-
import static com.google.common.truth.Truth.assertAbout;
19-
2018
import com.google.common.annotations.GwtIncompatible;
2119
import com.google.j2objc.annotations.J2ObjCIncompatible;
2220
import java.nio.file.Path;
@@ -40,43 +38,47 @@
4038
* such static imports will become ambiguous in Truth 1.4.2, breaking your build.
4139
*/
4240
@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+
})
4547
public final class Truth8 {
4648
@SuppressWarnings("AssertAboutOptionals") // suggests infinite recursion
4749
public static OptionalSubject assertThat(@Nullable Optional<?> target) {
48-
return assertAbout(OptionalSubject.optionals()).that(target);
50+
return Truth.assertThat(target);
4951
}
5052

5153
public static OptionalIntSubject assertThat(@Nullable OptionalInt target) {
52-
return assertAbout(OptionalIntSubject.optionalInts()).that(target);
54+
return Truth.assertThat(target);
5355
}
5456

5557
public static OptionalLongSubject assertThat(@Nullable OptionalLong target) {
56-
return assertAbout(OptionalLongSubject.optionalLongs()).that(target);
58+
return Truth.assertThat(target);
5759
}
5860

5961
public static OptionalDoubleSubject assertThat(@Nullable OptionalDouble target) {
60-
return assertAbout(OptionalDoubleSubject.optionalDoubles()).that(target);
62+
return Truth.assertThat(target);
6163
}
6264

6365
public static StreamSubject assertThat(@Nullable Stream<?> target) {
64-
return assertAbout(StreamSubject.streams()).that(target);
66+
return Truth.assertThat(target);
6567
}
6668

6769
public static IntStreamSubject assertThat(@Nullable IntStream target) {
68-
return assertAbout(IntStreamSubject.intStreams()).that(target);
70+
return Truth.assertThat(target);
6971
}
7072

7173
public static LongStreamSubject assertThat(@Nullable LongStream target) {
72-
return assertAbout(LongStreamSubject.longStreams()).that(target);
74+
return Truth.assertThat(target);
7375
}
7476

7577
@GwtIncompatible
7678
@J2ObjCIncompatible
7779
@J2ktIncompatible
7880
public static PathSubject assertThat(@Nullable Path target) {
79-
return assertAbout(PathSubject.paths()).that(target);
81+
return Truth.assertThat(target);
8082
}
8183

8284
private Truth8() {}

0 commit comments

Comments
 (0)
Please sign in to comment.