Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2d4197812d3825d39c1e4d60849c4249183e4c4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.jst.jsf.designtime.tests.resources;

import org.eclipse.jst.jsf.test.util.junit4.DualModeEnvironment;
import org.junit.experimental.categories.Categories.IncludeCategory;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)
@IncludeCategory(DualModeEnvironment.class)
@SuiteClasses({TestResourceIdentifierFactory.class,
    TestJarBasedJSFResource.class, TestJarBasedJSFResourceLocator.class,
    TestWorkspaceBasedJSFResource.class, TestWorkspaceBasedResourceLocator.class,
    TestJSFResource.class})
public class FastResourceLocatorSuite
{
    // do nothing, the annotations define the suite in JUnit 4
}

Back to the top