Package games.stendhal.client.actions

Source Code of games.stendhal.client.actions.AddBuddyActionTest

/* $Id: AddBuddyActionTest.java,v 1.7 2011/05/01 21:20:27 martinfuchs Exp $ */
/***************************************************************************
*                   (C) Copyright 2003-2010 - Stendhal                    *
***************************************************************************
***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
package games.stendhal.client.actions;

import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import games.stendhal.client.MockStendhalClient;
import games.stendhal.client.StendhalClient;

import marauroa.common.game.RPAction;

import org.junit.After;
import org.junit.BeforeClass;
import org.junit.Test;

public class AddBuddyActionTest {

  @BeforeClass
  public static void setUpBeforeClass() throws Exception {
  }

  @After
  public void tearDown() throws Exception {
    StendhalClient.resetClient();
  }

  /**
   * Tests for execute.
   */
  @Test
  public void testExecute() {
    new MockStendhalClient() {
      @Override
      public void send(final RPAction action) {
        assertEquals("addbuddy", action.get("type"));
        assertEquals("schnick", action.get("target"));
      }
    };
    final AddBuddyAction action = new AddBuddyAction();
    assertFalse(action.execute(null, null));
    assertTrue(action.execute(new String []{"schnick"}, null));
  }

  /**
   * Tests for getMaximumParameters.
   */
  @Test
  public void testGetMaximumParameters() {
    final AddBuddyAction action = new AddBuddyAction();
    assertThat(action.getMaximumParameters(), is(1));
  }

  /**
   * Tests for getMinimumParameters.
   */
  @Test
  public void testGetMinimumParameters() {
    final AddBuddyAction action = new AddBuddyAction();
    assertThat(action.getMinimumParameters(), is(1));
  }

}
TOP

Related Classes of games.stendhal.client.actions.AddBuddyActionTest

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.