Skip to content

Commit 02689c5

Browse files
FunctionalTestSuite: include ToManyTest and ToManyStandaloneTest.
1 parent e1d14d0 commit 02689c5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tests/objectbox-java-test/src/test/java/io/objectbox/FunctionalTestSuite.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@
1616

1717
package io.objectbox;
1818

19-
import org.junit.runner.RunWith;
20-
import org.junit.runners.Suite;
21-
import org.junit.runners.Suite.SuiteClasses;
22-
2319
import io.objectbox.index.IndexReaderRenewTest;
2420
import io.objectbox.query.LazyListTest;
2521
import io.objectbox.query.QueryObserverTest;
2622
import io.objectbox.query.QueryTest;
2723
import io.objectbox.relation.RelationEagerTest;
2824
import io.objectbox.relation.RelationTest;
25+
import io.objectbox.relation.ToManyStandaloneTest;
26+
import io.objectbox.relation.ToManyTest;
2927
import io.objectbox.relation.ToOneTest;
28+
import org.junit.runner.RunWith;
29+
import org.junit.runners.Suite;
30+
import org.junit.runners.Suite.SuiteClasses;
3031

3132
@RunWith(Suite.class)
3233
@SuiteClasses({
@@ -43,6 +44,8 @@
4344
QueryTest.class,
4445
RelationTest.class,
4546
RelationEagerTest.class,
47+
ToManyStandaloneTest.class,
48+
ToManyTest.class,
4649
ToOneTest.class,
4750
TransactionTest.class,
4851
})

0 commit comments

Comments
 (0)