blob: c4ab9ced09269378ad21203b6028886364a82cea [file] [log] [blame]
package org.junit.rules;
import org.junit.runner.Description;
/**
* The TestName Rule makes the current test name available inside test methods:
*
* <pre>
* public class TestNameTest {
* &#064;Rule
* public TestName name= new TestName();
*
* &#064;Test
* public void testA() {
* assertEquals(&quot;testA&quot;, name.getMethodName());
* }
*
* &#064;Test
* public void testB() {
* assertEquals(&quot;testB&quot;, name.getMethodName());
* }
* }
* </pre>
*/
public class TestName extends TestWatcher {
private String fName;
@Override
protected void starting(Description d) {
fName= d.getMethodName();
}
/**
* @return the name of the currently-running test method
*/
public String getMethodName() {
return fName;
}
}