Interface MultiConstraintAssertion
- 
- All Known Implementing Classes:
 DefaultMultiConstraintAssertion
public interface MultiConstraintAssertion 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidscores(Score<?> score)Asserts that theConstraintProviderunder test, given a set of facts, results in a specificScore.voidscores(Score<?> score, String message)As defined byscores(Score). 
 - 
 
- 
- 
Method Detail
- 
scores
default void scores(Score<?> score)
Asserts that theConstraintProviderunder test, given a set of facts, results in a specificScore.- Parameters:
 score- total score calculated for the given set of facts- Throws:
 AssertionError- when the expected score does not match the calculated score
 
- 
scores
void scores(Score<?> score, String message)
As defined byscores(Score).- Parameters:
 score- total score calculated for the given set of factsmessage- sometimes null, description of the scenario being asserted- Throws:
 AssertionError- when the expected score does not match the calculated score
 
 - 
 
 -