1packageorg.junit.runner;
234/**
5 * Represents an object that can describe itself
6 *
7 * @since 4.5
8 */9publicinterfaceDescribable {
10/**
11 * @return a {@link Description} showing the tests to be run by the receiver
12 */getDescription()13DescriptiongetDescription();
14}