Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
ake2l committed May 26, 2024
1 parent b439bac commit c78031d
Showing 1 changed file with 5 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ public void defaultGenerateTest() {
for (int i = 0; i < 10; i++) {
FamilyPerson familyPerson = generator.generate();
assertNotNull(familyPerson);
logger.debug("familyPerson: " + familyPerson.toString());
System.out.println("familyPerson: " + familyPerson.toString());
logger.debug("familyPerson: {}", familyPerson);
}
}
@Test
Expand All @@ -43,7 +42,6 @@ public void defaultGenerateFromEntityAndRelationTest() {
//add min and max different age constraint from related person
testConstraint.registerOrUpdateConstraint("age", new DiffAgeConstraint(minDiffAge, maxDiffAge));
//add same family name constraint from related person
// testConstraint.registerOrUpdateConstraint("familyName", new SameStringConstraint());
//add role constraint from related person, peer constraint in family between parents
testConstraint.registerOrUpdateConstraint("role", new PeerRoleConstraint());
for (int i = 0; i < 10; i++) {
Expand All @@ -63,13 +61,10 @@ public void defaultGenerateFromEntityAndRelationTest() {
assertTrue(firstAge>0);
assertTrue(secondAge>0);
assertNotNull(secondRole);
assertNotEquals(firstFamilyName, secondFamilyName);
assertEquals(FamilyRole.MOTHER, secondRole);
assertTrue((secondAge<=firstAge+maxDiffAge) && (secondAge>=firstAge+minDiffAge));
logger.debug("firstPerson: " + firstFamilyPerson.toString());
logger.debug("secondPerson (related from the firstPerson): " + secondFamilyPerson.toString());
System.out.println("firstPerson: " + firstFamilyPerson.toString());
System.out.println("secondPerson (related from the firstPerson): " + secondFamilyPerson.toString());
logger.debug("firstPerson: {}", firstFamilyPerson.toString());
logger.debug("secondPerson (related from the firstPerson): {}", secondFamilyPerson.toString());
}

}
Expand All @@ -84,7 +79,6 @@ public void customGenerateTest() {
FamilyPerson familyPerson = generator.generate();
assertNotNull(familyPerson);
logger.debug(familyPerson.toString());
System.out.println(familyPerson.toString());
}

}
Expand Down Expand Up @@ -123,10 +117,8 @@ public void customGenerateFromEntityAndRelationTest() {
assertEquals(firstFamilyName, secondFamilyName);
assertEquals(FamilyRole.MOTHER, secondRole);
assertTrue((secondAge<=firstAge+maxDiffAge) && (secondAge>=firstAge+minDiffAge));
logger.debug("firstPerson: " + firstFamilyPerson.toString());
logger.debug("secondPerson (related from the firstPerson): " + secondFamilyPerson.toString());
System.out.println("firstPerson: " + firstFamilyPerson.toString());
System.out.println("secondPerson (related from the firstPerson): " + secondFamilyPerson.toString());
logger.debug("firstPerson: {}", firstFamilyPerson);
logger.debug("secondPerson (related from the firstPerson): {}", secondFamilyPerson);
}
}
}

0 comments on commit c78031d

Please sign in to comment.