blob: 12e3b38f37d366842fd6d75253530ba173ceef91 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.bidi.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.equinox.bidi.internal.tests.*;
public class BidiComplexTestSuite extends TestSuite {
public static Test suite() {
return new BidiComplexTestSuite();
}
public BidiComplexTestSuite() {
addTestSuite(BidiComplexExtensibilityTest.class);
addTestSuite(BidiComplexMethodsTest.class);
addTestSuite(BidiComplexNullProcessorTest.class);
addTestSuite(BidiComplexFullToLeanTest.class);
addTestSuite(BidiComplexExtensionsTest.class);
addTestSuite(BidiComplexMathTest.class);
addTestSuite(BidiComplexSomeMoreTest.class);
addTestSuite(BidiComplexUtilTest.class);
}
}