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