@Test
public void testSaveEntityWithNoBindingAnnotation() {
Fixtures.deleteAllModels();
Fixtures.loadModels("pc.yml");
Parent father = Parent.find("byName", "parent").first();
Parent mother = Parent.find("byName", "mother").first();
Person tutor = Person.find("byUserName", "tutor").first();
Person newTutor = Person.find("byUserName", "new_tutor").first();
Child child = Child.find("byName", "child_2").first();
assertNotNull(father);