This project has retired. For details please refer to its Attic page.
CmisTestResult xref

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.chemistry.opencmis.tck;
20  
21  import java.util.List;
22  
23  /**
24   * CMIS TCK Test Result.
25   */
26  public interface CmisTestResult {
27  
28      /**
29       * Returns the group name.
30       */
31      String getGroupName();
32  
33      /**
34       * Returns the test name.
35       */
36      String getTestName();
37  
38      /**
39       * Returns the check status.
40       */
41      CmisTestResultStatus getStatus();
42  
43      /**
44       * Returns the check message.
45       */
46      String getMessage();
47  
48      /**
49       * Returns the exception if available.
50       */
51      Throwable getException();
52  
53      /**
54       * Returns the stack trace. The first element should point to check.
55       */
56      StackTraceElement[] getStackTrace();
57  
58      /**
59       * Returns the URL of the request if available.
60       */
61      String getUrl();
62  
63      /**
64       * Returns the request body if available.
65       */
66      String getRequest();
67  
68      /**
69       * Returns the response body if available.
70       */
71      String getResponse();
72  
73      /**
74       * Returns children of the result that contain more details.
75       */
76      List<CmisTestResult> getChildren();
77  
78      /**
79       * Returns if the result was fatal for the test.
80       */
81      boolean isFatal();
82  }