When using a custom test parameter with multiple fields, only the first field is being shown in the Difido reporter (without its value)
JSystem version: 6.1.09
Attached parameter code example with primitive data members.
The issue also occurs when the data members are Enums, custom classes, etc.
How to reproduce:
Add the parameter code below to a JSystem test
Fill all the fields
Run the test
Check the Difido reporter
public class CandidateTableValues implements Serializable{
private int iD;
private int grade;
private int blobs;
private int volume;
public CandidateTableValues(int iD, int grade, int blobs, int volume) {
this.iD = iD;
this.grade = grade;
this.blobs = blobs;
this.volume = volume;
}
public CandidateTableValues() {
}
public int getiD() {
return iD;
}
public void setiD(int iD) {
this.iD = iD;
}
public int getGrade() {
return grade;
}
public void setGrade(int grade) {
this.grade = grade;
}
public int getBlobs() {
return blobs;
}
public void setBlobs(int blobs) {
this.blobs = blobs;
}
public int getVolume() {
return volume;
}
public void setVolume(int volume) {
this.volume = volume;
}
}
When using a custom test parameter with multiple fields, only the first field is being shown in the Difido reporter (without its value)
JSystem version: 6.1.09
Attached parameter code example with primitive data members. The issue also occurs when the data members are Enums, custom classes, etc.
How to reproduce:
Expected Result:
Actual Result
There is also an issue in the Difido reports repository.