mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
37 lines
683 B
Java
37 lines
683 B
Java
package org.tests.genkey;
|
|
|
|
import io.ebean.DB;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.tests.model.basic.TOne;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
|
|
|
public class TestGeneratedKeys {
|
|
|
|
@Test
|
|
public void testJdbcBatchInsert() {
|
|
|
|
TOne c = new TOne();
|
|
c.setName("Banana");
|
|
c.setDescription("Test Gen Key");
|
|
|
|
TOne c1 = new TOne();
|
|
c1.setName("Two");
|
|
c1.setDescription("Test Gen Key Two");
|
|
|
|
DB.beginTransaction();
|
|
try {
|
|
DB.save(c);
|
|
DB.save(c1);
|
|
} finally {
|
|
DB.commitTransaction();
|
|
}
|
|
Integer id = c.getId();
|
|
assertNotNull(id);
|
|
|
|
Integer id1 = c1.getId();
|
|
assertNotNull(id1);
|
|
}
|
|
|
|
}
|