You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
He guys, trying to create a fixture like this one:
Fixture.of(ArrayOfResultBranchListDTO.class).addTemplate(BRANCH, new Rule() {{
add("resultBranchListDTO", one(ResultBranchListDTO.class, ResultBranchListDTOTemplate.BRANCH));
}});
The class ArrayOfResultBranchListDTO is defined like this:
public class ArrayOfResultBranchListDTO {
protected List<ResultBranchListDTO> resultBranchListDTO;
public ArrayOfResultBranchListDTO() {
}
public List<ResultBranchListDTO> getResultBranchListDTO() {
if (this.resultBranchListDTO == null) {
this.resultBranchListDTO = new ArrayList();
}
return this.resultBranchListDTO;
}
}
The code can't find the attribute resultBranchListDTO, I get the following error:
ArrayOfResultBranchListDTO-> No such attribute: resultBranchListDTO
I'm using version 3.1.0.
Can someone help me with this?
Thanks!
The text was updated successfully, but these errors were encountered:
He guys, trying to create a fixture like this one:
The class ArrayOfResultBranchListDTO is defined like this:
The code can't find the attribute resultBranchListDTO, I get the following error:
ArrayOfResultBranchListDTO-> No such attribute: resultBranchListDTO
I'm using version 3.1.0.
Can someone help me with this?
Thanks!
The text was updated successfully, but these errors were encountered: