mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
327 B
Java
19 lines
327 B
Java
package org.tests.inheritance.abstrakt;
|
|
|
|
import io.ebean.BaseTestCase;
|
|
import io.ebean.Ebean;
|
|
import org.junit.Test;
|
|
|
|
public class TestInheritanceNum extends BaseTestCase {
|
|
|
|
@Test
|
|
public void basicIUD() {
|
|
|
|
Block block = new Block();
|
|
block.setName("ibe");
|
|
block.setNotes("try it");
|
|
|
|
Ebean.save(block);
|
|
}
|
|
}
|