Refactor Argeo API
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / test / TestResultPart.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/test/TestResultPart.java b/org.argeo.slc.api/src/org/argeo/slc/test/TestResultPart.java
deleted file mode 100644 (file)
index ec984f9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.argeo.slc.test;
-
-/**
- * Part of a test result.
- * 
- * @see TestResult
- */
-public interface TestResultPart {
-       /** The status, as defined in {@link TestStatus}. */
-       public Integer getStatus();
-
-       /** The related message. */
-       public String getMessage();
-
-       /** The underlying <code>Exception</code>. Can be null. */
-       public String getExceptionMessage();
-}