Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java')
-rw-r--r--tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java b/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java
index b575a9e9c45..17043f3bbd5 100644
--- a/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java
+++ b/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/ITestSuiteClass.java
@@ -30,6 +30,7 @@ public interface ITestSuiteClass {
* Queries whether the test suite runs in "headless mode" (without the Eclipse Workbench).
*
* @return whether I am an headless test suite
+ * @since 1.2
*/
default boolean isHeadless() {
Class<?> main = getMainTestSuiteClass();
@@ -40,6 +41,7 @@ public interface ITestSuiteClass {
* Queries whether the test suite runs in "UI mode" (in an Eclipse Workbench).
*
* @return whether I am an UI test suite
+ * @since 1.2
*/
default boolean isUI() {
Class<?> main = getMainTestSuiteClass();

Back to the top