コード例 #1
0
  @Test
  public void testEmp_EditClient() throws Exception {

    Emp_AddClient addEmps = new Emp_AddClient();

    Emp_AddClient_DaoImpl mocknew = PowerMockito.mock(Emp_AddClient_DaoImpl.class);

    PowerMockito.whenNew(Emp_AddClient_DaoImpl.class).withNoArguments().thenReturn(mocknew);

    Emp_AddClient mockAddCleint = PowerMockito.mock(Emp_AddClient.class);
    List<Emp_AddClient> clientList = new ArrayList<Emp_AddClient>();
    PowerMockito.when(mocknew.list(mockAddCleint)).thenReturn(clientList);

    Client_Login clientlog = PowerMockito.mock(Client_Login.class);

    Emp_AddClient_Action emp_AddClient_Action = new Emp_AddClient_Action();
    emp_AddClient_Action.setAdd(mockAddCleint);
    emp_AddClient_Action.setAddb(mockAddCleint);
    emp_AddClient_Action.setAdds(clientlog);
    emp_AddClient_Action.setXyz(mocknew);
    emp_AddClient_Action.setDetail(clientList);

    // Emp_AddClient emp_AddClient = PowerMockito.mock(Emp_AddClient.class);
    emp_AddClient_Action.setEdit(mockAddCleint);
    emp_AddClient_Action.getEdit();
    emp_AddClient_Action.getDetail();

    String addEmp = emp_AddClient_Action.editclient();

    emp_AddClient_Action.eclient();

    Assert.assertEquals(addEmp, "success");
    PowerMockito.verifyNew(Emp_AddClient_DaoImpl.class);
  }
コード例 #2
0
  @Test
  public void testEmp_AddClients() throws Exception {

    Client_Login clientLogdet = new Client_Login();

    Emp_AddClient_DaoImpl mocknew = PowerMockito.mock(Emp_AddClient_DaoImpl.class);

    PowerMockito.whenNew(Emp_AddClient_DaoImpl.class).withNoArguments().thenReturn(mocknew);

    Client_Login mockCleintLogDet = PowerMockito.mock(Client_Login.class);
    PowerMockito.when(mocknew.addClients(mockCleintLogDet)).thenReturn(clientLogdet);

    String addEmp = new Emp_AddClient_Action().addClients();

    Assert.assertEquals(addEmp, "success");
    PowerMockito.verifyNew(Emp_AddClient_DaoImpl.class);
  }
コード例 #3
0
  public String eclient() {
    xyz.eclient(addb);
    addActionMessage("Changed Successfully");

    return SUCCESS;
  }
コード例 #4
0
  public String editclient() {

    this.detail = xyz.list(edit);
    return SUCCESS;
  }
コード例 #5
0
  /** @return Employee Add Clients */
  public String addClients() {

    xyz.addClients(adds);
    return SUCCESS;
  }
コード例 #6
0
  /** @return Employee Add Clients */
  public String addClient() {

    xyz.addClient(add);
    return SUCCESS;
  }