コード例 #1
0
  @Test
  public void testSaveApplicationUser() {

    ApplicationUser user = new ApplicationUser("testUser", "password");
    ApplicationUser userFound = repository.save(user);
    logger.debug("userId : " + userFound.getId());
    assertNotNull(userFound.getId());
  }