我不知道如何从.feature
中读取表格并正确填充
| payInstruction.custodian | and | payInstruction.acctnum |
像内部类。
我有一张桌子:
| confirmationId | totalNominal | payInstruction.custodian | payInstruction.acctnum |
| 1 | 100.1321 | yyy | yyy |
| 2 | 100.1351 | zzz | zzz |
我有具有下一个结构的类模板:
class Confirmation {
String confirmationId;
double totalNominal;
PayInstruction payInstruction;
}
class PayInstruction {
String custodian;
String acctnum;
}
自动将表格转换为
List<Confirmation>
时发生错误,因为无法识别payInstruction.acctnum
和支付payInstruction.custodian
有什么帮助吗?
最佳答案
我的方法是为Confirmation
的构造函数提供四个基元,然后在PayInstruction
的构造函数中创建Confirmation
。