Files
ebean/ebean-querybean/src/test/java/org/querytest/TargetTest.java
T

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();
}
}