blob: e59cc013b6e6c127ed77a0c0052414972a5ae2cb [file] [log] [blame]
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();
}