org.apache.chemistry.opencmis.tck
Interface CmisTestResult

All Known Implementing Classes:
CmisTestResultImpl

public interface CmisTestResult

CMIS TCK Test Result.


Method Summary
 java.util.List<CmisTestResult> getChildren()
          Returns children of the result that contain more details.
 java.lang.Throwable getException()
          Returns the exception if available.
 java.lang.String getGroupName()
          Returns the group name.
 java.lang.String getMessage()
          Returns the check message.
 java.lang.String getRequest()
          Returns the request body if available.
 java.lang.String getResponse()
          Returns the response body if available.
 java.lang.StackTraceElement[] getStackTrace()
          Returns the stack trace.
 CmisTestResultStatus getStatus()
          Returns the check status.
 java.lang.String getTestName()
          Returns the test name.
 java.lang.String getUrl()
          Returns the URL of the request if available.
 boolean isFatal()
          Returns if the result was fatal for the test.
 

Method Detail

getGroupName

java.lang.String getGroupName()
Returns the group name.


getTestName

java.lang.String getTestName()
Returns the test name.


getStatus

CmisTestResultStatus getStatus()
Returns the check status.


getMessage

java.lang.String getMessage()
Returns the check message.


getException

java.lang.Throwable getException()
Returns the exception if available.


getStackTrace

java.lang.StackTraceElement[] getStackTrace()
Returns the stack trace. The first element should point to check.


getUrl

java.lang.String getUrl()
Returns the URL of the request if available.


getRequest

java.lang.String getRequest()
Returns the request body if available.


getResponse

java.lang.String getResponse()
Returns the response body if available.


getChildren

java.util.List<CmisTestResult> getChildren()
Returns children of the result that contain more details.


isFatal

boolean isFatal()
Returns if the result was fatal for the test.



Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.