@Test
public void originalSelectionNullable() {
EntityDescriptor entityDescriptor = TestdataNullableEntity.buildEntityDescriptor();
TestdataNullableEntity e1 = new TestdataNullableEntity("e1");
// This variable is unable to have entity's as values, but it's an interesting nullable test anyway
GenuineVariableDescriptor variableDescriptor = entityDescriptor.getGenuineVariableDescriptor("value");
TestdataValue v1 = new TestdataValue("v1");
TestdataValue v2 = null;
TestdataValue v3 = new TestdataValue("v3");
ValueSelector childValueSelector = SelectorTestUtils.mockValueSelector(variableDescriptor,
v1, v2, v3);