}
public void testAddNode2() throws Exception
{
params.clear();
AddNodeCommand addNodeCommand = (AddNodeCommand)cservice.getCatalog("CLI").getCommand("addnode");
params.add("childOftestJCRClientCommands2");
params.add("nt:unstructured");
ctx.put(PARAMETERS_KEY, params);
addNodeCommand.execute(ctx);
System.out.println("[out]:" + ctx.getOutput());
assertEquals(((Node)ctx.getCurrentItem()).getPrimaryNodeType().getName(), "nt:unstructured");
}