aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/Describable.java
blob: 151414181b35563efaeb9e0eff85389c9cfa3040 (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
     */
    public abstract Description getDescription();
}