/* $Id: AwayActionTest.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.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
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 AwayActionTest {
@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("away", action.get("type"));
assertEquals("schnick", action.get("message"));
}
};
final AwayAction action = new AwayAction();
assertTrue(action.execute(null, "schnick"));
}
/**
* Tests for getMaximumParameters.
*/
@Test
public void testGetMaximumParameters() {
final AwayAction action = new AwayAction();
assertThat(action.getMaximumParameters(), is(0));
}
/**
* Tests for getMinimumParameters.
*/
@Test
public void testGetMinimumParameters() {
final AwayAction action = new AwayAction();
assertThat(action.getMinimumParameters(), is(0));
}
}