Refactor move tests from ebean-core to ebean-test

This commit is contained in:
rbygrave
2021-09-08 22:49:23 +12:00
parent 0b00a14fd3
commit eab56d323b
1650 changed files with 185 additions and 147 deletions
@@ -0,0 +1,29 @@
package org.tests.query;
import io.ebean.BaseTestCase;
import io.ebean.DB;
import org.tests.model.basic.Customer;
import org.tests.model.basic.ResetBasicData;
import org.junit.jupiter.api.Test;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertNotNull;
public class TestQueryPathJoinAndOrder extends BaseTestCase {
@Test
public void test() {
ResetBasicData.reset();
List<Customer> list = DB.find(Customer.class).select("id,name, status").fetch("contacts")
.order().asc("id").order().desc("contacts.firstName").setMaxRows(3).findList();
assertNotNull(list);
// can't really assert that the contacts are batch loaded
// via a secondary query join
}
}