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/PluginTestSuiteClass.java')
-rw-r--r--tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/PluginTestSuiteClass.java92
1 files changed, 46 insertions, 46 deletions
diff --git a/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/PluginTestSuiteClass.java b/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/PluginTestSuiteClass.java
index e559a54d3cc..c7f16a20f7d 100644
--- a/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/PluginTestSuiteClass.java
+++ b/tests/junit/plugins/junit/org.eclipse.papyrus.junit.framework/src/org/eclipse/papyrus/junit/framework/runner/PluginTestSuiteClass.java
@@ -1,46 +1,46 @@
-/*****************************************************************************
- * Copyright (c) 2010, 2015 CEA LIST, Christian W. Damus, and others.
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
- * Christian W. Damus - bug 451230
- *****************************************************************************/
-package org.eclipse.papyrus.junit.framework.runner;
-
-
-/**
- * Entry for a test suite in a test plugin
- */
-public class PluginTestSuiteClass implements ITestSuiteClass {
-
- /** main test suite class */
- private final Class<?> testClass;
-
- /**
- * Constructor.
- *
- * @param testClass
- * the main test suite class
- */
- public PluginTestSuiteClass(Class<?> testClass) {
- this.testClass = testClass;
- }
-
- /**
- * {@inheritDoc}
- */
- public Class<?> getMainTestSuiteClass() {
- return testClass;
- }
-
- @Override
- public String toString() {
- return String.format("PluginTestSuite %s", testClass);
- }
-
-}
+/*****************************************************************************
+ * Copyright (c) 2010, 2015 CEA LIST, Christian W. Damus, and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
+ * Christian W. Damus - bug 451230
+ *****************************************************************************/
+package org.eclipse.papyrus.junit.framework.runner;
+
+
+/**
+ * Entry for a test suite in a test plugin
+ */
+public class PluginTestSuiteClass implements ITestSuiteClass {
+
+ /** main test suite class */
+ private final Class<?> testClass;
+
+ /**
+ * Constructor.
+ *
+ * @param testClass
+ * the main test suite class
+ */
+ public PluginTestSuiteClass(Class<?> testClass) {
+ this.testClass = testClass;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public Class<?> getMainTestSuiteClass() {
+ return testClass;
+ }
+
+ @Override
+ public String toString() {
+ return String.format("PluginTestSuite %s", testClass);
+ }
+
+}

Back to the top