Skip to main content
summaryrefslogtreecommitdiffstats
blob: c51c7fca51595b190c5e071a37c004aab73a6c20 (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
package org.eclipse.emf.cdo.tests.config.dummy;

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

/**
 * TODO Remove me
 * 
 * @author Eike Stepper
 */
public class DummyTest1 extends ConfigTest
{
  public void test11() throws Exception
  {
  }

  public void test12() throws Exception
  {
  }

  public void test13() throws Exception
  {
    skipConfig(SessionConfig.JVM.INSTANCE);
  }
}

Back to the top