1 /*******************************************************************************
2  * Copyright (c) 2011 Cognos Incorporated, IBM Corporation and others
3  *
4  * This program and the accompanying materials are made
5  * available under the terms of the Eclipse Public License 2.0 which
6  * accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  ******************************************************************************/
11 package org.eclipse.equinox.log.test;
12 
13 import org.junit.runner.RunWith;
14 import org.junit.runners.Suite;
15 
16 @RunWith(Suite.class)
17 @Suite.SuiteClasses({ LogServiceTest.class, LogReaderServiceTest.class, LogPermissionCollectionTest.class })
18 public class AllLogServiceTests {
19 }
20