Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java
index 68efd22be..3042dabd6 100644
--- a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/PerformanceSuite.java
@@ -4,7 +4,7 @@
* 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -18,14 +18,14 @@ import org.eclipse.debug.tests.viewer.model.VirtualViewerPerformanceTests;
/**
* Tests for release builds.
- *
- * @since 3.6
+ *
+ * @since 3.6
*/
public class PerformanceSuite extends TestSuite {
/**
* Returns the suite. This is required to use the JUnit Launcher.
- *
+ *
* @return the test suite
*/
public static Test suite() {
@@ -33,12 +33,12 @@ public class PerformanceSuite extends TestSuite {
}
/**
- * Constructs the automated test suite. Adds all tests.
+ * Constructs the automated test suite. Adds all tests.
*/
public PerformanceSuite() {
// JFace viewer tests
addTest(new TestSuite(JFaceViewerPerformanceTests.class));
-
+
// Virtual viewer tests
addTest(new TestSuite(VirtualViewerPerformanceTests.class));
}

Back to the top