Open Source Repository

Home /junit/junit-4.8.2 | Repository Home



org/junit/runner/Describable.java
package org.junit.runner;


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