blob: 1224705c455ab3459979c7c964baa62a3e33bd44 [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 STextTestSuite extends TestSuite {
public static Test suite() {
return new STextTestSuite();
}
public STextTestSuite() {
addTestSuite(STextExtensibilityTest.class);
addTestSuite(STextMethodsTest.class);
addTestSuite(STextFullToLeanTest.class);
addTestSuite(STextExtensionsTest.class);
addTestSuite(STextMathTest.class);
addTestSuite(STextSomeMoreTest.class);
addTestSuite(STextProcessorTest.class);
addTestSuite(STextStringRecordTest.class);
}
}