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

    User result = fixture.get(id);

    // add additional test code here
    assertNotNull(result);
  }