blob: d84ada29ac1ade577269c6247b383a0a704111c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 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.monitor.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.mylyn.monitor.reports.tests.AllMonitorReportTests;
import org.eclipse.mylyn.monitor.tests.usage.tests.AllMonitorUsageTests;
/**
* @author Mik Kersten
*/
public class AllMonitorTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.mylyn.monitor.ui.tests");
suite.addTest(AllMonitorUsageTests.suite());
suite.addTest(AllMonitorReportTests.suite());
suite.addTestSuite(InteractionLoggerTest.class);
suite.addTestSuite(StatisticsLoggingTest.class);
suite.addTestSuite(MonitorTest.class);
suite.addTestSuite(InteractionEventExternalizationTest.class);
suite.addTestSuite(MonitorPackagingTest.class);
suite.addTestSuite(MultiWindowMonitorTest.class);
return suite;
}
}