コード例 #1
0
  /**
   * Run the ArrayList<Identifier> search(User) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 11/22/13 12:41 PM
   */
  @Test
  public void testSearch_1() throws Exception {
    Users fixture = Users.getInstance();
    User info = new User();

    ArrayList<Identifier> result = fixture.search(info);

    // add additional test code here
    assertNotNull(result);
    assertEquals(0, result.size());
  }