aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/Describable.java
blob: 293fdb32a5c68014e85a2f009e7c7a4132967cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
     */
    Description getDescription();
}