Package org.gamejolt

Examples of org.gamejolt.User


  public void testGetServerTime(){
    assertNotNull(api.getServerTime());
  }
  @Test
  public void testGetUser(){
    User u = api.getUser(1);
    assertNotNull(u);
    u = api.getUser(u.getName());
    assertNotNull(u);
    assertEquals(1,u.getId());
  }
View Full Code Here

TOP

Related Classes of org.gamejolt.User

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.