public void testGetCtxNode() throws Exception
{
params.clear();
ctx.setCurrentItem(ctx.getSession().getRootNode().getNode("testJCRClientCommands"));
GetNodeCommand getNodeCommand = (GetNodeCommand)cservice.getCatalog("CLI").getCommand("getnode");
params.add("childOftestJCRClientCommands");
ctx.put(PARAMETERS_KEY, params);
getNodeCommand.execute(ctx);
assertEquals(ctx.getCurrentItem().getName(), "childOftestJCRClientCommands");
}