public void originalLeftUnequalsRight() {
PlanningEntityDescriptor entityDescriptor = mock(PlanningEntityDescriptor.class);
when(entityDescriptor.getPlanningEntityClass()).thenReturn((Class) TestdataEntity.class);
EntitySelector leftEntitySelector = SelectorTestUtils.mockEntitySelector(entityDescriptor,
new TestdataEntity("a"), new TestdataEntity("b"), new TestdataEntity("c"), new TestdataEntity("d"));
EntitySelector rightEntitySelector = SelectorTestUtils.mockEntitySelector(entityDescriptor,
new TestdataEntity("x"), new TestdataEntity("y"), new TestdataEntity("z"));
SwapMoveSelector moveSelector = new SwapMoveSelector(leftEntitySelector, rightEntitySelector,
leftEntitySelector.getEntityDescriptor().getPlanningVariableDescriptors(), false);
DefaultSolverScope solverScope = mock(DefaultSolverScope.class);