Package org.rugby.online.core.humans

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


    }
  }

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

TOP

Related Classes of org.rugby.online.core.humans.RboPlayerLevel

Copyright © 2018 www.massapicom. 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.