Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKetan Padegaonkar2011-03-02 06:26:16 +0000
committerKetan Padegaonkar2011-03-02 06:26:28 +0000
commitd5605f4f95cffd7c77bad3d9474c45edc0c29608 (patch)
treeab4731f6124b4639b3dd9bceb5bc6b11eeb4a9f3 /org.eclipse.swtbot.forms.finder.test/src
parent8e303beaf1d32d8ea3e0c52ce08baff4e7062893 (diff)
downloadorg.eclipse.swtbot-d5605f4f95cffd7c77bad3d9474c45edc0c29608.tar.gz
org.eclipse.swtbot-d5605f4f95cffd7c77bad3d9474c45edc0c29608.tar.xz
org.eclipse.swtbot-d5605f4f95cffd7c77bad3d9474c45edc0c29608.zip
Add a test suite for the forms plugin.
Diffstat (limited to 'org.eclipse.swtbot.forms.finder.test/src')
-rw-r--r--org.eclipse.swtbot.forms.finder.test/src/org/eclipse/swtbot/forms/finder/test/AllTests.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/org.eclipse.swtbot.forms.finder.test/src/org/eclipse/swtbot/forms/finder/test/AllTests.java b/org.eclipse.swtbot.forms.finder.test/src/org/eclipse/swtbot/forms/finder/test/AllTests.java
new file mode 100644
index 00000000..1d658fe4
--- /dev/null
+++ b/org.eclipse.swtbot.forms.finder.test/src/org/eclipse/swtbot/forms/finder/test/AllTests.java
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Ketan Padegaonkar 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:
+ * Ketan Padegaonkar - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swtbot.forms.finder.test;
+
+import org.eclipse.swtbot.forms.finder.test.widgets.*;
+import org.eclipse.swtbot.swt.finder.junit.SWTBotJUnit4Suite;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite.SuiteClasses;
+
+/**
+ * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
+ */
+@RunWith(SWTBotJUnit4Suite.class)
+@SuiteClasses({
+ SWTBotExpandableCompositeTest.class,
+ SWTBotFormTextTest.class,
+ SWTBotHyperlinkTest.class,
+ SWTBotImageHyperlinkTest.class,
+ SWTBotScrolledFormTextTest.class,
+ SWTBotSectionTest.class,
+ SWTBotTreeNodeTest.class,
+ SWTBotTwistieTest.class
+ })
+public class AllTests {
+
+}

Back to the top