|
| 1 | +package io.objectbox.annotation; |
| 2 | + |
| 3 | +import org.junit.runner.RunWith; |
| 4 | +import org.junit.runners.Suite; |
| 5 | +import org.junit.runners.Suite.SuiteClasses; |
| 6 | + |
| 7 | +import io.objectbox.BoxStoreBuilderTest; |
| 8 | +import io.objectbox.BoxStoreTest; |
| 9 | +import io.objectbox.BoxTest; |
| 10 | +import io.objectbox.CursorBytesTest; |
| 11 | +import io.objectbox.CursorTest; |
| 12 | +import io.objectbox.NonArgConstructorTest; |
| 13 | +import io.objectbox.ObjectClassObserverTest; |
| 14 | +import io.objectbox.TransactionTest; |
| 15 | +import io.objectbox.index.IndexReaderRenewTest; |
| 16 | +import io.objectbox.query.LazyListTest; |
| 17 | +import io.objectbox.query.QueryObserverTest; |
| 18 | +import io.objectbox.query.QueryTest; |
| 19 | +import io.objectbox.relation.RelationEagerTest; |
| 20 | +import io.objectbox.relation.RelationTest; |
| 21 | +import io.objectbox.relation.ToOneTest; |
| 22 | + |
| 23 | +/** Duplicate for gradle */ |
| 24 | +@RunWith(Suite.class) |
| 25 | +@SuiteClasses({ |
| 26 | + BoxTest.class, |
| 27 | + BoxStoreTest.class, |
| 28 | + BoxStoreBuilderTest.class, |
| 29 | + CursorTest.class, |
| 30 | + CursorBytesTest.class, |
| 31 | + LazyListTest.class, |
| 32 | + NonArgConstructorTest.class, |
| 33 | + IndexReaderRenewTest.class, |
| 34 | + ObjectClassObserverTest.class, |
| 35 | + QueryObserverTest.class, |
| 36 | + QueryTest.class, |
| 37 | + RelationTest.class, |
| 38 | + RelationEagerTest.class, |
| 39 | + ToOneTest.class, |
| 40 | + TransactionTest.class, |
| 41 | +}) |
| 42 | +public class FunctionalTestSuite { |
| 43 | +} |
0 commit comments