mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
25 lines
391 B
Java
25 lines
391 B
Java
package org.querytest;
|
|
|
|
import org.example.domain.query.QAreaImpl;
|
|
import org.example.domain.query.QCityImpl;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class TargetTest {
|
|
|
|
@Test
|
|
public void test_oneToMany() {
|
|
|
|
new QAreaImpl()
|
|
.cities.fetch()
|
|
.findList();
|
|
}
|
|
|
|
@Test
|
|
public void test_manyToOne() {
|
|
|
|
new QCityImpl()
|
|
.country.fetch()
|
|
.findList();
|
|
}
|
|
}
|