You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: assertj-core/src/main/java/org/assertj/core/api/AbstractAssert.java
+8-5
Original file line number
Diff line number
Diff line change
@@ -590,7 +590,10 @@ public SELF isNotOfAnyClassIn(Class<?>... types) {
590
590
returnmyself;
591
591
}
592
592
593
-
/** {@inheritDoc} */
593
+
/**
594
+
* {@inheritDoc}
595
+
* @deprecated use {@link #asInstanceOf(InstanceOfAssertFactory) asInstanceOf(InstanceOfAssertFactories.LIST)} instead
596
+
*/
594
597
@Deprecated
595
598
@Override
596
599
@CheckReturnValue
@@ -949,7 +952,7 @@ public final SELF satisfiesAnyOf(Consumer<? super ACTUAL>... assertions) {
949
952
* This allows users to perform <b>OR like assertions</b> since only one the assertions group has to be met.
950
953
* <p>
951
954
* This is the same assertion as {@link #satisfiesAnyOf(Consumer...)} but the given consumers can throw checked exceptions.<br>
952
-
* More precisely, {@link RuntimeException} and {@link AssertionError} are rethrown as they are and {@link Throwable} wrapped in a {@link RuntimeException}.
955
+
* More precisely, {@link RuntimeException} and {@link AssertionError} are rethrown as they are and {@link Throwable} wrapped in a {@link RuntimeException}.
953
956
* <p>
954
957
* {@link #overridingErrorMessage(String, Object...) Overriding error message} is not supported as it would prevent from
955
958
* getting the error messages of the failing assertions, these are valuable to figure out what went wrong.<br>
@@ -960,18 +963,18 @@ public final SELF satisfiesAnyOf(Consumer<? super ACTUAL>... assertions) {
* // assertion succeeds as the file is empty (note that if hasReachedEOF was declared as a Consumer<Reader> the following line would not compile):
966
+
* // assertion succeeds as the file is empty (note that if hasReachedEOF was declared as a Consumer<Reader> the following line would not compile):
0 commit comments