summaryrefslogtreecommitdiffstats
path: root/junit4/src/main/java/org/junit/runner/Describable.java
blob: e59cc013b6e6c127ed77a0c0052414972a5ae2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.junit.runner;


/**
 * Represents an object that can describe itself
 */
public interface Describable {
	/**
	 * @return a {@link Description} showing the tests to be run by the receiver
	 */
	public abstract Description getDescription();
}