no effective change - format test code

This commit is contained in:
Rob Bygrave
2016-11-17 20:17:21 +13:00
parent 99f3bc8c54
commit 58760fe001
644 changed files with 8222 additions and 8513 deletions
@@ -1,7 +1,5 @@
package com.avaje.tests.basic;
import org.junit.Test;
import com.avaje.ebean.BaseTestCase;
import com.avaje.ebean.Ebean;
import com.avaje.tests.model.basic.ResetBasicData;
@@ -9,24 +7,25 @@ import com.avaje.tests.model.interfaces.Address;
import com.avaje.tests.model.interfaces.IAddress;
import com.avaje.tests.model.interfaces.IPerson;
import com.avaje.tests.model.interfaces.Person;
import org.junit.Test;
public class TestManyOneInterface extends BaseTestCase {
@Test
public void test() {
ResetBasicData.reset();
IAddress a = new Address();
IPerson p = new Person();
p.setDefaultAddress(a);
Ebean.save(a);
Ebean.save(p);
//Assert.assertTrue();
public void test() {
}
ResetBasicData.reset();
IAddress a = new Address();
IPerson p = new Person();
p.setDefaultAddress(a);
Ebean.save(a);
Ebean.save(p);
//Assert.assertTrue();
}
}