Skip to main content
summaryrefslogtreecommitdiffstats
blob: f5186dbfab4a07e884f3d909c94151e1fa119128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.jst.jsf.test.util.junit4;

/**
 * @author cbateman
 * 
 *         This class should never be used directly. It is used to mark JUnit
 *         test classes that run "fast".  This generally means they have 
 *         little or no environment startup costs and take less than 1 second
 *         to run each test case object.
 * 
 */
public interface FastTest
{
    // do nothing
}

Back to the top