}
public void testASTstring() throws Exception {
String string = "A Value";
mock.expects(once()).method("listMember").with(eq(string));
ASTstring node = new ASTstring(SieveParserTreeConstants.JJTSTRING);
node.setValue(string);
subject.start(node);
subject.end(node);
}