01: package org.ontoware.aifbcommons.xml;
02:
03: import org.junit.runner.RunWith;
04: import org.junit.runners.Suite;
05:
06: @RunWith(Suite.class)
07: @Suite.SuiteClasses({XMLUtilsTest.class,DocumentComposerTest.class})
08: public class AllTests {
09: // the class remains completely empty,
10: // being used only as a holder for the above annotations
11: }
|