Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2fd75b184e1703b0a6a732a51b7ec3d0ea4361e7 (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.win32;

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


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

public class AllWin32Tests {

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

}

Back to the top