Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb6267240a679c427cebc52fa6308b1ad8190d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.jetty.websocket.server.ab;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses(
{ TestABCase1.class, TestABCase2.class, TestABCase3.class, TestABCase4.class, TestABCase5.class, TestABCase6.class, TestABCase7_9.class })
public class AllTests
{
    /* let junit do the rest */
}

Back to the top