|
16 | 16 |
|
17 | 17 | package io.objectbox;
|
18 | 18 |
|
19 |
| -import org.junit.runner.RunWith; |
20 |
| -import org.junit.runners.Suite; |
21 |
| -import org.junit.runners.Suite.SuiteClasses; |
22 |
| - |
23 | 19 | import io.objectbox.index.IndexReaderRenewTest;
|
24 | 20 | import io.objectbox.query.LazyListTest;
|
| 21 | +import io.objectbox.query.PropertyQueryTest; |
25 | 22 | import io.objectbox.query.QueryObserverTest;
|
26 | 23 | import io.objectbox.query.QueryTest;
|
27 | 24 | import io.objectbox.relation.RelationEagerTest;
|
28 | 25 | import io.objectbox.relation.RelationTest;
|
| 26 | +import io.objectbox.relation.ToManyStandaloneTest; |
| 27 | +import io.objectbox.relation.ToManyTest; |
29 | 28 | import io.objectbox.relation.ToOneTest;
|
| 29 | +import org.junit.runner.RunWith; |
| 30 | +import org.junit.runners.Suite; |
| 31 | +import org.junit.runners.Suite.SuiteClasses; |
30 | 32 |
|
| 33 | +/** Used to run tests on CI, excludes performance tests. */ |
31 | 34 | @RunWith(Suite.class)
|
32 | 35 | @SuiteClasses({
|
33 | 36 | BoxTest.class,
|
34 | 37 | BoxStoreTest.class,
|
35 | 38 | BoxStoreBuilderTest.class,
|
36 | 39 | CursorTest.class,
|
37 | 40 | CursorBytesTest.class,
|
| 41 | + DebugCursorTest.class, |
38 | 42 | LazyListTest.class,
|
39 | 43 | NonArgConstructorTest.class,
|
40 | 44 | IndexReaderRenewTest.class,
|
41 | 45 | ObjectClassObserverTest.class,
|
| 46 | + PropertyQueryTest.class, |
42 | 47 | QueryObserverTest.class,
|
43 | 48 | QueryTest.class,
|
44 | 49 | RelationTest.class,
|
45 | 50 | RelationEagerTest.class,
|
| 51 | + ToManyStandaloneTest.class, |
| 52 | + ToManyTest.class, |
46 | 53 | ToOneTest.class,
|
47 | 54 | TransactionTest.class,
|
48 | 55 | })
|
|
0 commit comments