blob: cd7b60efd4f6d4aae44965c6319a4220315d75b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylar.tests.misc;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Mik Kersten
*/
public class AllMiscTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.mylar.tests");
// $JUnit-BEGIN$
// suite.addTestSuite(SharedTaskFolderTest.class);
// suite.addTestSuite(BugzillaSearchPluginTest.class);
suite.addTestSuite(AssertionsEnabledTest.class);
suite.addTestSuite(HypertextStructureBridgeTest.class);
//suite.addTestSuite(BugzillaStackTraceTest.class);
// $JUnit-END$
return suite;
}
}