Package org.h2.test.utils
Interface ResultVerifier
-
public interface ResultVerifierThis handler is called after a method returned.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanverify(java.lang.Object returnValue, java.lang.Throwable t, java.lang.reflect.Method m, java.lang.Object... args)Verify the result or exception.
-
-
-
Method Detail
-
verify
boolean verify(java.lang.Object returnValue, java.lang.Throwable t, java.lang.reflect.Method m, java.lang.Object... args)Verify the result or exception.- Parameters:
returnValue- the returned value or nullt- the exception / error or null if the method returned normallym- the method or null if unknownargs- the arguments or null if unknown- Returns:
- true if the method should be called again
-
-