public class DefaultSubChainSelectorTest {
@Test
public void original() {
PlanningVariableDescriptor variableDescriptor = SelectorTestUtils.mockVariableDescriptor(
TestdataChainedEntity.class, "chainedObject");
when(variableDescriptor.isChained()).thenReturn(true);
ScoreDirector scoreDirector = mock(ScoreDirector.class);
TestdataChainedAnchor a0 = new TestdataChainedAnchor("a0");
TestdataChainedEntity a1 = new TestdataChainedEntity("a1", a0);
TestdataChainedEntity a2 = new TestdataChainedEntity("a2", a1);