commit | 1d7b9889101408224ab462252416f2dfbe57ae80 | [log] [tgz] |
---|---|---|
author | apanchenk <apanchenk> | Fri Aug 29 12:24:10 2008 +0000 |
committer | apanchenk <apanchenk> | Fri Aug 29 12:24:10 2008 +0000 |
tree | f8e6f71552a3530f7ee76752e67768e3ed8a03b9 | |
parent | 750a6ea6c0e57c343a4431664247dae0b4bec1a6 [diff] |
getTestName() method added
diff --git a/core/plugins/org.eclipse.dltk.testing/src/org/eclipse/dltk/testing/model/ITestCaseElement.java b/core/plugins/org.eclipse.dltk.testing/src/org/eclipse/dltk/testing/model/ITestCaseElement.java index 96ec21d..7f21d9d 100755 --- a/core/plugins/org.eclipse.dltk.testing/src/org/eclipse/dltk/testing/model/ITestCaseElement.java +++ b/core/plugins/org.eclipse.dltk.testing/src/org/eclipse/dltk/testing/model/ITestCaseElement.java
@@ -19,7 +19,17 @@ * @since 3.3 */ public interface ITestCaseElement extends ITestElement { - + + /** + * Returns the full name of the test case. + * + * Other two methods are too specific to the testing framework, so probably + * we should deprecate them. + * + * @return + */ + public String getTestName(); + /** * Returns the name of the test method. * @@ -33,5 +43,5 @@ * @return the qualified type name of the class the test is contained in. */ public String getTestClassName(); - + }