Interface SingleConstraintAssertion
- All Known Implementing Classes:
DefaultSingleConstraintAssertion
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidAsserts that theConstraintbeing tested, given a set of facts, results in any number of penalties.default voidpenalizes(long times) Asserts that theConstraintbeing tested, given a set of facts, results in a given number of penalties.voidAs defined bypenalizes(long).voidAs defined bypenalizes().default voidpenalizesBy(int matchWeightTotal) Asserts that theConstraintbeing tested, given a set of facts, results in a specific penalty.voidpenalizesBy(int matchWeightTotal, String message) As defined bypenalizesBy(int).default voidpenalizesBy(long matchWeightTotal) As defined bypenalizesBy(int).voidpenalizesBy(long matchWeightTotal, String message) As defined bypenalizesBy(int).default voidpenalizesBy(BigDecimal matchWeightTotal) As defined bypenalizesBy(int).voidpenalizesBy(BigDecimal matchWeightTotal, String message) As defined bypenalizesBy(int).default voidrewards()Asserts that theConstraintbeing tested, given a set of facts, results in any number of rewards.default voidrewards(long times) Asserts that theConstraintbeing tested, given a set of facts, results in a given number of rewards.voidAs defined byrewards(long).voidAs defined byrewards().default voidrewardsWith(int matchWeightTotal) Asserts that theConstraintbeing tested, given a set of facts, results in a specific reward.voidrewardsWith(int matchWeightTotal, String message) As defined byrewardsWith(int).default voidrewardsWith(long matchWeightTotal) As defined byrewardsWith(int).voidrewardsWith(long matchWeightTotal, String message) As defined byrewardsWith(int).default voidrewardsWith(BigDecimal matchWeightTotal) As defined byrewardsWith(int).voidrewardsWith(BigDecimal matchWeightTotal, String message) As defined byrewardsWith(int).
-
Method Details
-
penalizesBy
default void penalizesBy(int matchWeightTotal) Asserts that theConstraintbeing tested, given a set of facts, results in a specific penalty.Ignores the constraint weight: it only asserts the match weights. For example: a match with a match weight of
10on a constraint with a constraint weight of-2hardreduces the score by-20hard. In that case, this assertion checks for10.An
int matchWeightTotalautomatically casts tolongforlong scores.- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected penalty is not observed
-
penalizesBy
As defined bypenalizesBy(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected penalty is not observed
-
penalizesBy
default void penalizesBy(long matchWeightTotal) As defined bypenalizesBy(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected penalty is not observed
-
penalizesBy
As defined bypenalizesBy(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected penalty is not observed
-
penalizesBy
As defined bypenalizesBy(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected penalty is not observed
-
penalizesBy
As defined bypenalizesBy(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected penalty is not observed
-
penalizes
default void penalizes(long times) Asserts that theConstraintbeing tested, given a set of facts, results in a given number of penalties.Ignores the constraint and match weights: it only asserts the number of matches For example: if there are two matches with weight of
10each, this assertion will check for 2 matches.- Parameters:
times- at least 0, expected number of times that the constraint will penalize- Throws:
AssertionError- when the expected penalty is not observed
-
penalizes
As defined bypenalizes(long).- Parameters:
times- at least 0, expected number of times that the constraint will penalizemessage- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected penalty is not observed
-
penalizes
default void penalizes()Asserts that theConstraintbeing tested, given a set of facts, results in any number of penalties.Ignores the constraint and match weights: it only asserts the number of matches For example: if there are two matches with weight of
10each, this assertion will succeed. If there are no matches, it will fail.- Throws:
AssertionError- when there are no penalties
-
penalizes
As defined bypenalizes().- Parameters:
message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when there are no penalties
-
rewardsWith
default void rewardsWith(int matchWeightTotal) Asserts that theConstraintbeing tested, given a set of facts, results in a specific reward.Ignores the constraint weight: it only asserts the match weights. For example: a match with a match weight of
10on a constraint with a constraint weight of-2hardreduces the score by-20hard. In that case, this assertion checks for10.An
int matchWeightTotalautomatically casts tolongforlong scores.- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected reward is not observed
-
rewardsWith
As defined byrewardsWith(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected reward is not observed
-
rewardsWith
default void rewardsWith(long matchWeightTotal) As defined byrewardsWith(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected reward is not observed
-
rewardsWith
As defined byrewardsWith(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected reward is not observed
-
rewardsWith
As defined byrewardsWith(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.- Throws:
AssertionError- when the expected reward is not observed
-
rewardsWith
As defined byrewardsWith(int).- Parameters:
matchWeightTotal- at least 0, expected sum of match weights of matches of the constraint.message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected reward is not observed
-
rewards
default void rewards(long times) Asserts that theConstraintbeing tested, given a set of facts, results in a given number of rewards.Ignores the constraint and match weights: it only asserts the number of matches For example: if there are two matches with weight of
10each, this assertion will check for 2 matches.- Parameters:
times- at least 0, expected number of times that the constraint will reward- Throws:
AssertionError- when the expected reward is not observed
-
rewards
As defined byrewards(long).- Parameters:
times- at least 0, expected number of times that the constraint will rewardmessage- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when the expected reward is not observed
-
rewards
default void rewards()Asserts that theConstraintbeing tested, given a set of facts, results in any number of rewards.Ignores the constraint and match weights: it only asserts the number of matches For example: if there are two matches with weight of
10each, this assertion will succeed. If there are no matches, it will fail.- Throws:
AssertionError- when there are no rewards
-
rewards
As defined byrewards().- Parameters:
message- sometimes null, description of the scenario being asserted- Throws:
AssertionError- when there are no rewards
-