We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36295e6 commit 8d90817Copy full SHA for 8d90817
spring-test/src/main/java/org/springframework/test/web/servlet/assertj/MvcTestResult.java
@@ -44,10 +44,12 @@
44
public interface MvcTestResult extends AssertProvider<MvcTestResultAssert> {
45
46
/**
47
- * Return the {@linkplain MvcResult result} of the processing.
+ * Return the {@linkplain MvcResult result} of the processing. If
48
+ * the processing has failed with an unresolved exception, the
49
+ * result is not available, see {@link #getUnresolvedException()}.
50
* @return the {@link MvcResult}
- * @throw {@link IllegalStateException} if the request failed unexpectedly
- * @see #getUnresolvedException()
51
+ * @throws IllegalStateException if the processing has failed with
52
+ * an unresolved exception
53
*/
54
MvcResult getMvcResult();
55
0 commit comments