Skip to content

Commit 470c1ec

Browse files
authored
doc: deprecation notice visible in AbstractAssert#asList (#3327)
1 parent 0521edf commit 470c1ec

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

assertj-core/src/main/java/org/assertj/core/api/AbstractAssert.java

+8-5
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,10 @@ public SELF isNotOfAnyClassIn(Class<?>... types) {
590590
return myself;
591591
}
592592

593-
/** {@inheritDoc} */
593+
/**
594+
* {@inheritDoc}
595+
* @deprecated use {@link #asInstanceOf(InstanceOfAssertFactory) asInstanceOf(InstanceOfAssertFactories.LIST)} instead
596+
*/
594597
@Deprecated
595598
@Override
596599
@CheckReturnValue
@@ -949,7 +952,7 @@ public final SELF satisfiesAnyOf(Consumer<? super ACTUAL>... assertions) {
949952
* This allows users to perform <b>OR like assertions</b> since only one the assertions group has to be met.
950953
* <p>
951954
* 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}.
953956
* <p>
954957
* {@link #overridingErrorMessage(String, Object...) Overriding error message} is not supported as it would prevent from
955958
* 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) {
960963
* ThrowingConsumer&lt;Reader&gt; hasReachedEOF = reader -&gt; assertThat(reader.read()).isEqualTo(-1);
961964
* ThrowingConsumer&lt;Reader&gt; startsWithZ = reader -&gt; assertThat(reader.read()).isEqualTo('Z');
962965
*
963-
* // assertion succeeds as the file is empty (note that if hasReachedEOF was declared as a Consumer&lt;Reader&gt; the following line would not compile):
966+
* // assertion succeeds as the file is empty (note that if hasReachedEOF was declared as a Consumer&lt;Reader&gt; the following line would not compile):
964967
* assertThat(new FileReader("empty.txt")).satisfiesAnyOf(hasReachedEOF, startsWithZ);
965968
*
966-
* // alphabet.txt contains: abcdefghijklmnopqrstuvwxyz
969+
* // alphabet.txt contains: abcdefghijklmnopqrstuvwxyz
967970
* // assertion fails as alphabet.txt is not empty and starts with 'a':
968971
* assertThat(new FileReader("alphabet.txt")).satisfiesAnyOf(hasReachedEOF, startsWithZ);</code></pre>
969972
*
970973
* @param assertions the group of assertions to run against the object under test - must not be null.
971974
* @return this assertion object.
972975
*
973976
* @throws IllegalArgumentException if any given assertions group is null
974-
* @throws RuntimeException rethrown as is by the given {@link ThrowingConsumer} or wrapping any {@link Throwable}.
977+
* @throws RuntimeException rethrown as is by the given {@link ThrowingConsumer} or wrapping any {@link Throwable}.
975978
* @throws AssertionError rethrown as is by the given {@link ThrowingConsumer}
976979
* @since 3.21.0
977980
*/

0 commit comments

Comments
 (0)