Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/test/AllTests.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/test/AllTests.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/test/AllTests.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/test/AllTests.java
new file mode 100644
index 000000000..09a1d069a
--- /dev/null
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/test/AllTests.java
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2003 University Of British Columbia and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * University Of British Columbia - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.mylar.bugzilla.test;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+//TODO add tests for 2.18 bugzilla
+
+/**
+ * @author tanya
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public class AllTests {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite("Test for org.eclipse.mylar.bugzilla.test");
+ //$JUnit-BEGIN$
+ suite.addTest(new TestSuite(BugzillaNewBugParserTestCDT.class));
+ suite.addTest(new TestSuite(BugzillaNewBugParserTestEquinox.class));
+ suite.addTest(new TestSuite(BugzillaNewBugParserTestGMT.class));
+ suite.addTest(new TestSuite(BugzillaNewBugParserTestPlatform.class));
+ suite.addTest(new TestSuite(BugzillaNewBugParserTestVE.class));
+ suite.addTest(new TestSuite(BugzillaParserTest.class));
+ suite.addTest(new TestSuite(BugzillaParserTestNoBug.class));
+ suite.addTest(new TestSuite(
+ BugzillaProductParser1ProductHipikatTest.class));
+ suite.addTest(new TestSuite(BugzillaProductParserTest.class));
+ //$JUnit-END$
+ return suite;
+ }
+} \ No newline at end of file

Back to the top