Examples of RboSkill


Examples of org.rugby.online.core.skills.RboSkill

  @Test
  public void testGetSkillMap() {
    Map<String, RboSkill> map = this.player.getSkillMap();
    assertNotNull(map);
    for (String key : map.keySet()) {
      RboSkill skill = map.get(key);
      assertNotNull(skill);
      RboSkillType type = skill.getType();
      assertNotNull(type);
      int level = skill.getLevel();
      assertNotNull(level);
      assertTrue(level >= DefaultSkill.MIN_VALUE);
      assertTrue(level <= DefaultSkill.MAX_INIT_VALUE);
      System.out.println("[TEST SKILL] > " + key + " : " + String.valueOf(level));
    }
View Full Code Here
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.