Examples of RboPlayerLevel


Examples of org.rugby.online.core.humans.RboPlayerLevel

 
 
  @Test
  public void testSetLevel() {
    this.player.setLevel(RboPlayerLevel.AMATEUR);
    RboPlayerLevel level = this.player.getLevel();
    assertNotNull(level);
    assertTrue(level.equals(RboPlayerLevel.AMATEUR));
  }
View Full Code Here

Examples of org.rugby.online.core.humans.RboPlayerLevel

    }
  }

  @Test
  public void testGetLevel() {
    RboPlayerLevel level = this.player.getLevel();
    assertNotNull(level);
    assertTrue(level.equals(RboPlayerLevel.AMATEUR));
  }
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.