blob: 93bd96a3552b2378b3f768cad37d25bc2f0d1ec5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 Mylar committers 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
*******************************************************************************/
package org.eclipse.mylar.sandbox.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllSandboxTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.mylar.sandbox.tests");
//$JUnit-BEGIN$
// suite.addTestSuite(SharedTaskFolderTest.class);
// suite.addTestSuite(BugzillaActiveSearchTest.class);
//$JUnit-END$
return suite;
}
}