blob: 722f8fb5ee8d19bb57619670ff7ff65d82fc85c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2020, Thomas Wolf <thomas.wolf@paranor.ch> and others.
*
* All rights reserved. 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
*******************************************************************************/
package org.eclipse.core.tests.text;
import junit.framework.*;
public class AllTests extends TestCase {
public AllTests() {
super(null);
}
public AllTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTest(StringMatcherPlainTest.suite());
suite.addTest(StringMatcherWildcardTest.suite());
suite.addTest(StringMatcherFindTest.suite());
return suite;
}
}