Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 92cb29294c652dde3f20af67ee645d93a5d9dc8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.swt.tests.gtk;

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


@RunWith(Suite.class)
@Suite.SuiteClasses({
		// Test.class be added here.
})

public class AllGTKTests {

	public static void main(String[] args) {
//		JUnitCore.main(AllGTKTests.class.getName()); // Enable once a test is added.
	}

}

Back to the top