@Test
public void shouldParseStaticOperandFromStringWithBindVariable() {
StaticOperand operand = parser.parseStaticOperand(tokens("$VAR"), typeSystem);
assertThat(operand, is(instanceOf(BindVariableName.class)));
BindVariableName var = (BindVariableName)operand;
assertThat(var.getBindVariableName(), is("VAR"));
}