@Test
public void shouldParseDynamicOperandFromStringContainingPathWithNoSelectorOnlyIfThereIsOneSelectorAsSource() {
Source source = new NamedSelector(selectorName("tableA"));
DynamicOperand operand = parser.parseDynamicOperand(tokens("PATH()"), typeSystem, source);
assertThat(operand, is(instanceOf(NodePath.class)));
NodePath path = (NodePath)operand;
assertThat(path.selectorName(), is(selectorName("tableA")));
}