Package org.exoplatform.frameworks.jcr.cli

Examples of org.exoplatform.frameworks.jcr.cli.RemoveItemCommand.execute()


   }

   public void testRemoveItemCommand() throws Exception
   {
      RemoveItemCommand removeItemCommand = (RemoveItemCommand)cservice.getCatalog("CLI").getCommand("remove");
      removeItemCommand.execute(ctx);
      System.out.println("[out]:" + ctx.getOutput());
      assertEquals(((Node)ctx.getCurrentItem()).getName(), "childOftestJCRClientCommands2");
   }

   public void testCopyNodeCommand() throws Exception
View Full Code Here


   }

   public void testRemoveItemCommand() throws Exception
   {
      RemoveItemCommand removeItemCommand = (RemoveItemCommand)cservice.getCatalog("CLI").getCommand("remove");
      removeItemCommand.execute(ctx);

      assertEquals(((Node)ctx.getCurrentItem()).getName(), "childOftestJCRClientCommands2");
   }

   public void testCopyNodeCommand() throws Exception
View Full Code Here

   public void testRemoveItemCommand() throws Exception
   {
      ctx.setCurrentItem(ctx.getSession().getRootNode().getNode("testJCRClientCommands/childOftestJCRClientCommands"));
      RemoveItemCommand removeItemCommand = (RemoveItemCommand)cservice.getCatalog("CLI").getCommand("remove");
      removeItemCommand.execute(ctx);

      assertEquals(((Node)ctx.getCurrentItem()).getName(), "testJCRClientCommands");
   }

   public void testCopyNodeCommand() throws Exception
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.