blob: 92dc3133ec0161cde2087f76495c91f0e1886dc5 [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.mylyn.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.mylyn.sandbox.tests");
//$JUnit-BEGIN$
suite.addTestSuite(StatisticsReportingTest.class);
suite.addTestSuite(SharedTaskFolderTest.class);
suite.addTestSuite(BugzillaActiveSearchTest.class);
//$JUnit-END$
return suite;
}
}