blob: cfae45903b33e6c23ece1111a6f8cd6caad15795 [file] [log] [blame]
package org.apache.sling.performance;
/**
* Interface to be implemented by a class with PerformanceTests.
* <p></p>The provided method @{link #testCaseName()} exposes the possibility to give a name to each instance of the
* implementing class</p>
*/
public interface IdentifiableTestCase {
public String testCaseName();
}