Assert.assertThat(parser.createFunctionFragment(function, 0), Is.is("{!func}foo(FooBar [])"));
}
@Test
public void testCreateFunctionFieldFragmentIgnoresBlankAlias() {
SimpleCalculatedField ff = new SimpleCalculatedField(" ", new Foo(null));
Assert.assertThat(parser.createCalculatedFieldFragment(ff), Is.is("{!func}foo()"));
}