コード例 #1
0
  /**
   * Run the void update(Identifier,User) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 11/22/13 12:41 PM
   */
  @Test(expected = hostel.exception.IdentifierNotFoundException.class)
  public void testUpdate_1() throws Exception {
    Users fixture = Users.getInstance();
    Identifier id = new Identifier("");
    User info = new User();

    fixture.update(id, info);

    // add additional test code here
  }