blob: de854c3cd41f06a6111de44c84ce9de7aa9b9b49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2011 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.monitor.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Mik Kersten
*/
public class AllMonitorTests {
public static Test suite() {
TestSuite suite = new TestSuite(AllMonitorTests.class.getName());
suite.addTestSuite(CheckActivityJobTest.class);
suite.addTestSuite(ActivityContextManagerTest.class);
return suite;
}
}