Package io.vertx.ext.unit.report
Interface Failure
- 
 public interface FailureA failure provides the details of a failure that happened during the execution of a test case. The failure can be:- an assertion failure: an assertion failed
- an error failure: an expected error occured
 - Author:
- Julien Viet
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Throwablecause()booleanisError()Stringmessage()StringstackTrace()
 
- 
- 
- 
Method Detail- 
isErrorboolean isError() - Returns:
- true if the failure is an error failure otherwise it is an assertion failure
 
 - 
messageString message() - Returns:
- the error message
 
 - 
stackTraceString stackTrace() - Returns:
- the stack trace
 
 - 
causeThrowable cause() - Returns:
- the underlying exception causing this failure, it may be null
 
 
- 
 
-