blob: 687defe942673c5c588a02b7142975fffef52201 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Cognos Incorporated, IBM Corporation and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.equinox.log.test;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllLogServiceTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test log service"); //$NON-NLS-1$
suite.addTestSuite(LogServiceTest.class);
suite.addTestSuite(LogReaderServiceTest.class);
suite.addTestSuite(LogPermissionCollectionTest.class);
return suite;
}
}