]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestResultPart.java
Throw an error by default, but it is configurable.
[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 /**
4 * Part of a test result.
5 *
6 * @see TestResult
7 */
8 public interface TestResultPart {
9 /** The status, as defined in {@link TestStatus}. */
10 public Integer getStatus();
11
12 /** The related message. */
13 public String getMessage();
14
15 /** The underlying <code>Exception</code>. Can be null. */
16 public Exception getException();
17 }