}
public void testStartASTcommand() throws Exception {
String name = "CommandName";
mock.expects(once()).method("startCommand").with(eq(name));
ASTcommand node = new ASTcommand(SieveParserTreeConstants.JJTCOMMAND);
node.setName(name);
subject.start(node);
}