Class SimpleBigDecimalScoreVerifier<Solution_>
- java.lang.Object
-
- org.optaplanner.test.impl.score.AbstractScoreVerifier<Solution_>
-
- org.optaplanner.test.impl.score.buildin.simplebigdecimal.SimpleBigDecimalScoreVerifier<Solution_>
-
- Type Parameters:
Solution_- the solution type, the class with thePlanningSolutionannotation
public class SimpleBigDecimalScoreVerifier<Solution_> extends AbstractScoreVerifier<Solution_>
To assert the constraints of aSolverFactorythat uses aSimpleBigDecimalScore. If you're usingConstraintStreams, useConstraintVerifierinstead.
-
-
Field Summary
-
Fields inherited from class org.optaplanner.test.impl.score.AbstractScoreVerifier
scoreDirectorFactory
-
-
Constructor Summary
Constructors Constructor Description SimpleBigDecimalScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassertWeight(String constraintPackage, String constraintName, BigDecimal expectedWeight, Solution_ solution)Assert that the constraint ofPlanningSolutionhas the expected weight for that score level.voidassertWeight(String constraintName, BigDecimal expectedWeight, Solution_ solution)Assert that the constraint ofPlanningSolutionhas the expected weight for that score level.-
Methods inherited from class org.optaplanner.test.impl.score.AbstractScoreVerifier
assertWeight
-
-
-
-
Constructor Detail
-
SimpleBigDecimalScoreVerifier
public SimpleBigDecimalScoreVerifier(SolverFactory<Solution_> solverFactory)
- Parameters:
solverFactory- never null, theSolverFactoryof which you want to test the constraints.
-
-
Method Detail
-
assertWeight
public void assertWeight(String constraintName, BigDecimal expectedWeight, Solution_ solution)
Assert that the constraint ofPlanningSolutionhas the expected weight for that score level.- Parameters:
constraintName- never null, the name of the constraintexpectedWeight- never null, the total weight for all matches of that 1 constraintsolution- never null, the actualPlanningSolution
-
assertWeight
public void assertWeight(String constraintPackage, String constraintName, BigDecimal expectedWeight, Solution_ solution)
Assert that the constraint ofPlanningSolutionhas the expected weight for that score level.- Parameters:
constraintPackage- sometimes null. When null,constraintNamefor thescoreLevelmust be unique.constraintName- never null, the name of the constraintexpectedWeight- never null, the total weight for all matches of that 1 constraintsolution- never null, the actualPlanningSolution
-
-