aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/Describable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/junit/runner/Describable.java')
-rw-r--r--src/main/java/org/junit/runner/Describable.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main/java/org/junit/runner/Describable.java b/src/main/java/org/junit/runner/Describable.java
index e59cc01..1514141 100644
--- a/src/main/java/org/junit/runner/Describable.java
+++ b/src/main/java/org/junit/runner/Describable.java
@@ -3,10 +3,12 @@ package org.junit.runner;
/**
* Represents an object that can describe itself
+ *
+ * @since 4.5
*/
public interface Describable {
- /**
- * @return a {@link Description} showing the tests to be run by the receiver
- */
- public abstract Description getDescription();
+ /**
+ * @return a {@link Description} showing the tests to be run by the receiver
+ */
+ public abstract Description getDescription();
} \ No newline at end of file