]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestResultPart.java
Various changes
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / TestResultPart.java
1 package org.argeo.slc.core.test;
2
3 import java.util.List;
4
5 /**
6 * Part of a test result.
7 *
8 * @see TestResult
9 */
10 public interface TestResultPart {
11 /** The status, as defined in {@link TestStatus}. */
12 public Integer getStatus();
13
14 /** The related message. */
15 public String getMessage();
16
17 /** The underlying <code>Exception</code>. Can be null. */
18 public String getExceptionMessage();
19
20 public List<String> getExceptionStackLines();
21 }