37 lines
673 B
Java
37 lines
673 B
Java
package utilities.RPClass;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import marauroa.common.game.RPClass;
|
|
|
|
import org.junit.After;
|
|
import org.junit.AfterClass;
|
|
import org.junit.Before;
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
|
|
public class CreatureTestHelperTest {
|
|
|
|
@BeforeClass
|
|
public static void setUpBeforeClass() throws Exception {
|
|
}
|
|
|
|
@AfterClass
|
|
public static void tearDownAfterClass() throws Exception {
|
|
}
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
}
|
|
|
|
@After
|
|
public void tearDown() throws Exception {
|
|
}
|
|
|
|
@Test
|
|
public void testGenerateRPClasses() {
|
|
CreatureTestHelper.generateRPClasses();
|
|
assertTrue(RPClass.hasRPClass("creature"));
|
|
}
|
|
|
|
}
|