blob: 778680c1fda2d0a9be724101e724acb1c1229068 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2015 Tasktop Technologies.
*
* 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.commons.notifications.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.mylyn.commons.notifications.tests.core.NotificationEnvironmentTest;
import org.eclipse.mylyn.commons.notifications.tests.feed.FeedReaderTest;
import org.eclipse.mylyn.commons.notifications.tests.feed.ServiceMessageManagerTest;
import org.eclipse.mylyn.commons.notifications.tests.feed.ServiceMessageTest;
/**
* @author Steffen Pingel
*/
public class AllNotificationsTests {
public static Test suite() {
TestSuite suite = new TestSuite(AllNotificationsTests.class.getName());
suite.addTestSuite(NotificationEnvironmentTest.class);
suite.addTestSuite(FeedReaderTest.class);
suite.addTestSuite(ServiceMessageManagerTest.class);
suite.addTestSuite(ServiceMessageTest.class);
return suite;
}
}