Polish and fix build failure

This commit is contained in:
Stéphane Nicoll
2024-05-08 15:59:28 +02:00
parent 36295e664a
commit 8d90817ba3

View File

@@ -44,10 +44,12 @@ import org.springframework.test.web.servlet.MvcResult;
public interface MvcTestResult extends AssertProvider<MvcTestResultAssert> {
/**
* Return the {@linkplain MvcResult result} of the processing.
* Return the {@linkplain MvcResult result} of the processing. If
* the processing has failed with an unresolved exception, the
* result is not available, see {@link #getUnresolvedException()}.
* @return the {@link MvcResult}
* @throw {@link IllegalStateException} if the request failed unexpectedly
* @see #getUnresolvedException()
* @throws IllegalStateException if the processing has failed with
* an unresolved exception
*/
MvcResult getMvcResult();