Excel test file double columns

145 views Asked by At

enter image description hereI am trying to test my rule project in eclipse using IBM Ilog but although there are no problem when checking the project before generating test file. For some reason my excel test template for scenarios is generated with double columsn for each object. Example I have a class Claim which has periodstart etc.. when excel is generated there are two columns to fill for a scenario with the heading periodstart. One bold the other not.

enter image description here

1

There are 1 answers

2
Akram GARGOURI On

Please share the code of your class Claim perhaps you have the attribute visibilty public

public String periodStart;

and in addition

public void setPeriodStart(String periodStart){ //... }

-->make the attribute private or remove the setter method