Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c8317af146f531afd6f67f50e967b2ad0660ce7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

package org.eclipse.equinox.http.servlet.testbase;

import org.eclipse.equinox.http.servlet.tests.DispatchingTest;
import org.eclipse.equinox.http.servlet.tests.ServletTest;

import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import junit.framework.TestSuite;

public class AllTests extends TestSuite {

    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(new JUnit4TestAdapter(DispatchingTest.class));
        suite.addTest(new JUnit4TestAdapter(ServletTest.class));
        return suite;
    }

}

Back to the top