Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-11-22 17:15:27 +0000
committerCurtis D'Entremont2006-11-22 17:15:27 +0000
commitc1b1f4c4d6190570987ba7566aa177fce589c57a (patch)
tree871d3e906b656ac71fc15a354ecb69f00487dbf3 /org.eclipse.ua.tests/base/org
parentfb6c264f3e9419d4780635b4f0004596699db52e (diff)
downloadeclipse.platform.ua-c1b1f4c4d6190570987ba7566aa177fce589c57a.tar.gz
eclipse.platform.ua-c1b1f4c4d6190570987ba7566aa177fce589c57a.tar.xz
eclipse.platform.ua-c1b1f4c4d6190570987ba7566aa177fce589c57a.zip
added UA performance tests
Diffstat (limited to 'org.eclipse.ua.tests/base/org')
-rw-r--r--org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllPerformanceTests.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllPerformanceTests.java b/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllPerformanceTests.java
new file mode 100644
index 000000000..327a8acc8
--- /dev/null
+++ b/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllPerformanceTests.java
@@ -0,0 +1,40 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation 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:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.ua.tests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.eclipse.ua.tests.cheatsheet.performance.AllCheatSheetPerformanceTests;
+import org.eclipse.ua.tests.help.performance.AllHelpPerformanceTests;
+import org.eclipse.ua.tests.intro.performance.AllIntroPerformanceTests;
+
+/*
+ * Tests all user assistance performance (automated).
+ */
+public class AllPerformanceTests extends TestSuite {
+
+ /*
+ * Returns the entire performance test suite.
+ */
+ public static Test suite() {
+ return new AllPerformanceTests();
+ }
+
+ /*
+ * Constructs a new test suite.
+ */
+ public AllPerformanceTests() {
+ addTest(AllHelpPerformanceTests.suite());
+ addTest(AllIntroPerformanceTests.suite());
+ addTest(AllCheatSheetPerformanceTests.suite());
+ }
+}

Back to the top