You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
816 B
28 lines
816 B
package de.superx; |
|
|
|
import org.junit.runner.RunWith; |
|
import org.junit.runners.Suite; |
|
|
|
import de.superx.bianalysis.AttributeGroupQueryBuilderTest; |
|
import de.superx.bianalysis.BiAnalysis331884Test; |
|
import de.superx.bianalysis.BiAnalysisApiTest; |
|
import de.superx.bianalysis.BiAnalysisTest; |
|
import de.superx.bianalysis.ConformedTest; |
|
import de.superx.bianalysis.DbMetaAdapterTest; |
|
import de.superx.bianalysis.MetadataImporterTest; |
|
import de.superx.bianalysis.ProjectRestrictionTest; |
|
|
|
@RunWith(Suite.class) |
|
@Suite.SuiteClasses({ |
|
BiAnalysisTest.class, |
|
BiAnalysisApiTest.class, |
|
DbMetaAdapterTest.class, |
|
MetadataImporterTest.class, |
|
BiAnalysis331884Test.class, |
|
AttributeGroupQueryBuilderTest.class, |
|
ConformedTest.class, |
|
ProjectRestrictionTest.class |
|
}) |
|
public class AllBiAnalysisUnitTests { |
|
|
|
}
|
|
|