Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c34c577c3808b089c6eb334d3db31df7f99fe64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Created on Jun 2, 2010
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.framework.access.test;

import org.eclipse.osee.framework.access.test.internal.InternalAccessTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses( { //
InternalAccessTestSuite.class, //
})
public class AccessTestSuite {

}

Back to the top