blob: 4741d5abcc43a6814af0bc3ee4f78a0c4ddc502a [file] [log] [blame]
package org.eclipse.wst.common.uriresolver.tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class AllTests extends TestCase {
public static Test suite() {
TestSuite testSuite = new TestSuite("All URI Resolver Tests");
testSuite.addTestSuite(ExtensibleURIResolverTest.class);
return testSuite;
}
}