blob: f63b20fab29473038d1440f752f1f9710852b433 [file] [log] [blame]
package org.eclipse.wst.common.uriresolver.tests;
import org.eclipse.wst.common.uriresolver.internal.ExtensibleURIResolver;
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;
}
}