TestdataMappedByChainedAnchor b0 = new TestdataMappedByChainedAnchor("b0");
TestdataMappedByChainedEntity b1 = new TestdataMappedByChainedEntity("b1", b0);
b0.setNextEntity(b1);
TestdataMappedByChainedSolution solution = new TestdataMappedByChainedSolution("solution");
List<TestdataMappedByChainedAnchor> anchorList = Arrays.asList(a0, b0);
solution.setChainedAnchorList(anchorList);
List<TestdataMappedByChainedEntity> originalEntityList = Arrays.asList(a1, a2, a3, b1);
solution.setChainedEntityList(originalEntityList);
SolutionDescriptor solutionDescriptor = TestdataMappedByChainedSolution.buildSolutionDescriptor();
IncrementalScoreDirectorFactory scoreDirectorFactory = mock(IncrementalScoreDirectorFactory.class);
when(scoreDirectorFactory.getSolutionDescriptor()).thenReturn(solutionDescriptor);
IncrementalScoreCalculator incrementalScoreCalculator = mock(IncrementalScoreCalculator.class);