blob: 7e84a7f6fa0569abd925a6580b56450f2feb4835 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2021 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
*
* Contributors:
* IBM Corporation - initial API and implementation
* Inno-Tec Innovative Technologies GmbH - Fix for Bug 388055
*
*******************************************************************************/
package org.eclipse.equinox.security.tests;
import org.eclipse.equinox.internal.security.tests.storage.*;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* As tests use registry listeners, UI listeners might cause tests to time out
* and fail. As such this tests should be run in a headless mode.
*/
@RunWith(Suite.class)
@SuiteClasses({ Base64Test.class, DetectPBECiphersTest.class, SlashEncodeTest.class, DefaultPreferencesTest.class,
DynamicPreferencesTest.class, ObsoletesTest.class, WinPreferencesTest.class })
public class AllSecurityTests {
// see @SuiteClasses
}