Skip to main content
summaryrefslogtreecommitdiffstats
blob: 55eac0aacd46cb7390fe1025e8bc180c388ccac8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.eclipse.emf.cdo.tests.config.dummy;

import org.eclipse.emf.cdo.tests.config.ConfigTest;
import org.eclipse.emf.cdo.tests.config.ConfigTestSuite;

import java.util.List;

import junit.framework.Test;

/**
 * TODO Remove me
 * 
 * @author Eike Stepper
 */
public class AllTests extends ConfigTestSuite
{
  public static Test suite()
  {
    return new AllTests().getTestSuite("Dummy Tests");
  }

  @Override
  protected void initTestClasses(List<Class<? extends ConfigTest>> testClasses)
  {
    testClasses.add(DummyTest1.class);
    testClasses.add(DummyTest2.class);
    testClasses.add(DummyTest3.class);
  }
}

Back to the top