blob: bb72e4fd1998b8cb3fb852a20b020264ef2bf9b3 [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH. 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: Daniel Stucky (empolis GmbH) - initial API and implementation
**********************************************************************************************************************/
package org.eclipse.smila.security.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Suite combining all security tests.
*
*/
public final class AllTests {
/**
* utility class, do not create instances.
*/
private AllTests() {
}
/**
* @return suite for all recordstorage tests
*/
public static Test suite() {
final TestSuite suite = new TestSuite("Test for org.eclipse.smila.security.");
// $JUnit-BEGIN$
suite.addTestSuite(TestSecurityAttribute.class);
suite.addTestSuite(TestSecurityException.class);
// test has to be disabled until a public available LDAP server is used
//suite.addTestSuite(TestSecurityResolver.class);
// $JUnit-END$
return suite;
}
}