Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5084dda18a5a0cd2a6e3b3167a1ad3996fe88900 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.swt.tests.manualJUnit;

import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;

/**
 * During development/testing, sometimes when you want to run specific set of jUnits, you can move them here temporarily.
 */
@FixMethodOrder(MethodSorters.JVM)  // To make it easier for human to go through the tests. Same order makes tests easier to recognize.
public class MJ_curr_working_set extends MJ_root {


}

Back to the top