Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.dltk.sh.ui.tests/src/org/eclipse/dltk/sh/ui/text/tests/TextSuite.java')
-rw-r--r--org.eclipse.dltk.sh.ui.tests/src/org/eclipse/dltk/sh/ui/text/tests/TextSuite.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/org.eclipse.dltk.sh.ui.tests/src/org/eclipse/dltk/sh/ui/text/tests/TextSuite.java b/org.eclipse.dltk.sh.ui.tests/src/org/eclipse/dltk/sh/ui/text/tests/TextSuite.java
new file mode 100644
index 0000000..8a80805
--- /dev/null
+++ b/org.eclipse.dltk.sh.ui.tests/src/org/eclipse/dltk/sh/ui/text/tests/TextSuite.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2009-2011 Red Hat Inc. 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:
+ * Alexander Kurtakov - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.dltk.sh.ui.text.tests;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * Test suite for all org.eclipse.dltk.sh.ui.text tests.
+ *
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({ AssignmentRuleTest.class, DollarBraceCountingRuleTest.class, DollarRuleTest.class,
+ DoubleQuoteScannerTest.class, EvalScannerTest.class })
+public class TextSuite {
+}

Back to the top