Код: Выделить всё
class Builder{
private String name;
private String address;
public Builder setName(String name){
this.name = name;
return this;
}
public Builder setAddress(String address){
this.address = address;
return this;
}
}
Подробнее здесь: https://stackoverflow.com/questions/850 ... th-mockito