Add missing @Nullable declarations to TestContext return values
This commit is contained in:
parent
8649061acc
commit
f6d62eda8b
|
|
@ -67,6 +67,7 @@ public interface TestContext extends AttributeAccessor, Serializable {
|
||||||
* @return the current test instance (may be {@code null})
|
* @return the current test instance (may be {@code null})
|
||||||
* @see #updateState(Object, Method, Throwable)
|
* @see #updateState(Object, Method, Throwable)
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
Object getTestInstance();
|
Object getTestInstance();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -75,6 +76,7 @@ public interface TestContext extends AttributeAccessor, Serializable {
|
||||||
* @return the current test method (may be {@code null})
|
* @return the current test method (may be {@code null})
|
||||||
* @see #updateState(Object, Method, Throwable)
|
* @see #updateState(Object, Method, Throwable)
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
Method getTestMethod();
|
Method getTestMethod();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue