01: package org.ontoware.rdf2go.impl.jena24;
02:
03: import org.junit.runner.RunWith;
04: import org.junit.runners.Suite;
05: import org.ontoware.rdf2go.GenericTest;
06: import org.ontoware.rdf2go.model.ModelTest;
07: import org.ontoware.rdf2go.model.NotifyingModelTest;
08:
09: @RunWith(Suite.class)
10: @Suite.SuiteClasses({GenericTest.class,ModelTest.class,NotifyingModelTest.class,DataTypeTesting.class,TestResourceLoading.class})
11: public class AllTests {
12: // the class remains completely empty,
13: // being used only as a holder for the above annotations
14: }
|