如何在处理第三方对象时模拟链式方法

时间:2018-02-27 13:06:06

标签: java mockito

我的代码如下所示

@IBOutlet weak var signInButton: GradientButton!

getCredentials方法如下

public void getEmployeeDetails(Employee employee){
 Employeecredentials credentials= employee.getCredentials();
}

如何模拟上述方法链。

我试过

void getCredentials(){
  EmployeeCredentials employeecredentials= ThirdpartyClass().thirdpartyMethodB().thirdpartyMethodc().getCredentials
  return employeecredentials;
}

但是我在方法链上得到空指针异常。我缺少什么

0 个答案:

没有答案