Package utilities.RPClass

Source Code of utilities.RPClass.ItemTestHelperTest

/* $Id: ItemTestHelperTest.java,v 1.3 2010/09/19 01:28:49 nhnb 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 utilities.RPClass;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import games.stendhal.server.entity.item.Item;
import marauroa.common.game.RPClass;

import org.junit.Test;

public class ItemTestHelperTest {

  @org.junit.Test
  public void testcreateItem() throws Exception {
    ItemTestHelper.createItem();
    final Item item = ItemTestHelper.createItem("blabla");
    assertEquals("blabla", item.getName());

  }

  @Test
  public void testGenerateRPClasses() {
    ItemTestHelper.generateRPClasses();
    assertTrue(RPClass.hasRPClass("item"));
   
  }
}
TOP

Related Classes of utilities.RPClass.ItemTestHelperTest

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.