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