Skip to main content
summaryrefslogtreecommitdiffstats
blob: fd42fc43589125cb2cd5746d1b6377a9d62de2e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.fx.testcases.dnd.app.jemmy;

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

import at.bestsolution.efxclipse.jemmy.OSGiJemmyBootstrapTestCase;

@RunWith(Suite.class)
@Suite.SuiteClasses({ SampleTestCase.class })
public class TestSuite extends OSGiJemmyBootstrapTestCase {

}

Back to the top