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