mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#919 - io.ebean package initial
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package org.tests.batchload;
|
||||
|
||||
import io.ebean.BaseTestCase;
|
||||
import io.ebean.Ebean;
|
||||
import org.tests.model.basic.Contact;
|
||||
import org.tests.model.basic.Customer;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class TestBasicNavOnEmpty extends BaseTestCase {
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
|
||||
Customer c = new Customer();
|
||||
c.setName("HelloRob");
|
||||
|
||||
Ebean.save(c);
|
||||
|
||||
c = Ebean.find(Customer.class, c.getId());
|
||||
|
||||
List<Contact> contacts = c.getContacts();
|
||||
Assert.assertEquals(0, contacts.size());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user