Package com.talosdigital.cotejo.entity

Examples of com.talosdigital.cotejo.entity.User


 
  @Test
  public void testGetUserById(){
    when(userDao.getUserById(USER_ID)).thenReturn(user);
    when(user.getId()).thenReturn(USER_ID);
    User tempUser = userService.getUserById(USER_ID);
    assertEquals(USER_ID, tempUser.getId());
  }
View Full Code Here


    assertEquals(USER_ID, tempUser.getId());
  }
 
  @Test
  public void testGetUserByNegativeId(){
    User tempUser = userService.getUserById(NEGATIVE_USER_ID);
    assertNull(tempUser);
  }
View Full Code Here

TOP

Related Classes of com.talosdigital.cotejo.entity.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.