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();
-	
+
 }