Issue : Writing to a data sheet will terminate when the text length exceeds 32767 characters.
Reproducible steps:
writer.addSheet(OtrDataMapper.class, otrData,headers);
Java Bean:
@sheet
public class DataMapper {
@SheetColumn("TC_ID")
private String TC;
@SheetColumn("REQ")
private String REQ;
@SheetColumn("EXPECTED")
private String EXPECTED;
@SheetColumn("ACTUAL")
private String ACTUAL;
@SheetColumn("RESULT")
private String RESULT;
public void setACTUAL(String ACTUAL) {
this.ACTUAL = ACTUAL;
}
public void setRESULT(String RESULT) {
this.RESULT = RESULT;
}
}
Write step:
writer.addSheet(DataMapper.class);
Writing stops when any of the field value exceeds 32767
Expected:
The text should be divided into <32767 segments and then printed in the following cells (columns).
Issue : Writing to a data sheet will terminate when the text length exceeds 32767 characters.
Reproducible steps:
writer.addSheet(OtrDataMapper.class, otrData,headers);
Java Bean:
@sheet
public class DataMapper {
}
Write step:
writer.addSheet(DataMapper.class);
Writing stops when any of the field value exceeds 32767
Expected:
The text should be divided into <32767 segments and then printed in the following cells (columns).