1 package org.junit.runner;
2 
3 
4 /**
5  * Represents an object that can describe itself
6  *
7  * @since 4.5
8  */
9 public interface Describable {
10     /**
11      * @return a {@link Description} showing the tests to be run by the receiver
12      */
getDescription()13     public abstract Description getDescription();
14 }