797798799800801802803804805
} private void _test__farbytteSetFather_transitions0_effect_state_objectTests0_test(final Person it) { Person _father = it.getFather(); assertEquals("father == jens failed after anne.father = jens", this.jens, _father); }
831832833834835836837838839
} private void _test__farbytteSetFather_transitions1_effect_state_objectTests0_test(final Person it) { Person _father = it.getFather(); assertEquals("father == hallvard failed after anne.father = hallvard", this.hallvard, _father); }
874875876877878879880881882
} private void _test__farbytteAddChild_transitions0_effect_state_objectTests0_test(final Person it) { Person _father = it.getFather(); assertEquals("father == jens failed after jens.addChild(anne)", this.jens, _father); }
908909910911912913914915916
} private void _test__farbytteAddChild_transitions1_effect_state_objectTests0_test(final Person it) { Person _father = it.getFather(); assertEquals("father == hallvard failed after hallvard.addChild(anne)", this.hallvard, _father); }
951952953954955956957958959
} private void _test__morbytteSetFather_transitions0_effect_state_objectTests0_test(final Person it) { Person _mother = it.getMother(); assertEquals("mother == anne failed after jens.mother = anne", this.anne, _mother); }
985986987988989990991992993
} private void _test__morbytteSetFather_transitions1_effect_state_objectTests0_test(final Person it) { Person _mother = it.getMother(); assertEquals("mother == marit failed after jens.mother = marit", this.marit, _mother); }
102810291030103110321033103410351036
} private void _test__morbytteAddChild_transitions0_effect_state_objectTests0_test(final Person it) { Person _mother = it.getMother(); assertEquals("mother == anne failed after anne.addChild(jens)", this.anne, _mother); }
106210631064106510661067106810691070
} private void _test__morbytteAddChild_transitions1_effect_state_objectTests0_test(final Person it) { Person _mother = it.getMother(); assertEquals("mother == marit failed after marit.addChild(jens)", this.marit, _mother); }