mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
30 lines
637 B
Java
30 lines
637 B
Java
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);
|
|
}
|
|
}
|
|
}
|