Package games.stendhal.server.actions.query

Examples of games.stendhal.server.actions.query.InfoAction


   * Tests for execute.
   */
  @Test
  public void testExecute() throws Exception {
    Player bob = PlayerTestHelper.createPlayer("bob");
    InfoAction info = new InfoAction();
    info.onAction(bob, null);
    assertFalse(bob.events().isEmpty());
    //assertEquals(null,bob.events().get(0));
   
  }
View Full Code Here


    StopAction.register();
    TradeAction.register();
    UseAction.register();
    WhereAction.register();
    WhoAction.register();
    register("info", new InfoAction());
    register("markscroll", new MarkScrollAction());
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.actions.query.InfoAction

Copyright © 2018 www.massapicom. 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.