blob: d4248b334d4ff67d2d68baf685f1c59843fed10c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2010 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.resources.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.mylyn.context.tests.support.ContextTestUtil;
/**
* @author Mik Kersten
*/
public class AllResourcesTests {
public static Test suite() {
ContextTestUtil.triggerContextUiLazyStart();
TestSuite suite = new TestSuite("Test for org.eclipse.mylyn.resources.tests");
suite.addTestSuite(ResourceChangeMonitorTest.class);
suite.addTestSuite(ResourcePatternExclusionStrategyTest.class);
suite.addTestSuite(ResourceModificationDateExclusionStrategyTest.class);
suite.addTestSuite(ResourceContextTest.class);
return suite;
}
}