#919 - io.ebean package initial

This commit is contained in:
Rob Bygrave
2016-12-11 23:23:22 +13:00
parent 5821dc96b9
commit 971e2dc91b
2134 changed files with 10721 additions and 8652 deletions
@@ -0,0 +1,29 @@
package org.tests.batchload;
import io.ebean.BaseTestCase;
import io.ebean.Ebean;
import org.tests.model.basic.UUOne;
import org.junit.Assert;
import org.junit.Test;
import javax.persistence.EntityNotFoundException;
import java.util.UUID;
public class TestLazyLoadNonExistentBean extends BaseTestCase {
@Test
public void testSimple() {
UUID uuid = UUID.randomUUID();
UUOne one = Ebean.getReference(UUOne.class, uuid);
try {
// invoke lazy loading
one.getName();
Assert.assertTrue(false);
} catch (EntityNotFoundException e) {
// expecting this
Assert.assertTrue(true);
}
}
}