/**
*
*/
package org.timerescue.test;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.timerescue.action.Action;
import org.timerescue.action.DefaultAttackAction;
import org.timerescue.element.agent.StateHolder;
import org.timerescue.information.InformationParameters;
/**
* @author chamanx
*
*/
public class StateHolderTest {
StateHolder holder;
/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
holder = new StateHolder();
///While fighting
//holder.addState();
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#addState(org.timerescue.action.Action)}.
*/
@Test
public void testAddState() {
fail("Not yet implemented");
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#removeState(org.timerescue.action.Action)}.
*/
@Test
public void testRemoveState() {
fail("Not yet implemented");
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#clearStates()}.
*/
@Test
public void testClearStates() {
fail("Not yet implemented");
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#isPlayerControlled()}.
*/
@Test
public void testIsPlayerControlled() {
fail("Not yet implemented");
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#isStateActive(java.lang.Class)}.
*/
@Test
public void testIsStateActive() {
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#toSerial()}.
*/
@Test
public void testToSerial() {
fail("Not yet implemented");
}
/**
* Test method for {@link org.timerescue.element.agent.StateHolder#fromSerial(java.lang.String)}.
*/
@Test
public void testFromSerial() {
fail("Not yet implemented");
}
}