Refactor move tests from ebean-core to ebean-test

This commit is contained in:
rbygrave
2021-09-08 22:49:23 +12:00
parent 0b00a14fd3
commit eab56d323b
1650 changed files with 185 additions and 147 deletions
@@ -0,0 +1,31 @@
package org.tests.basic;
import io.ebean.BaseTestCase;
import io.ebean.DB;
import org.tests.model.basic.ResetBasicData;
import org.tests.model.interfaces.Address;
import org.tests.model.interfaces.IAddress;
import org.tests.model.interfaces.IPerson;
import org.tests.model.interfaces.Person;
import org.junit.jupiter.api.Test;
public class TestManyOneInterface extends BaseTestCase {
@Test
public void test() {
ResetBasicData.reset();
IAddress a = new Address("hello");
IPerson p = new Person();
p.setDefaultAddress(a);
DB.save(a);
DB.save(p);
//Assert.assertTrue();
}
}