@Test
public void toStringText() {
ExpressionFormLine efl = new ExpressionFormLine();
FactPattern fact = new FactPattern( "String" );
fact.setBoundName( "$v" );
efl.appendPart( new ExpressionVariable( fact ) );
efl.appendPart( new ExpressionMethod( "size",
"int",
SuggestionCompletionEngine.TYPE_NUMERIC_INTEGER ) );
assertEquals( "$v.size()",
efl.getText() );