我如何在 Hyperledger Composer 的 Cucumber 测试中包含关系?
How can I include relationships in my Cucumber tests for Hyperledger Composer?
如何在使用 Cucumber 编写测试时创建资产之间的关系?我试过了:
And I have added the following assets
| id | rel |
| a | org.example.OtherAsset#id |
但这没有用,加上前缀 resource:
也没有用。
使用 JSON 创建资产时工作正常,但我觉得使用 "table" 界面也应该可以做到这一点。
在 Cucumber 中包含关系时,您不需要包含关系的资产类型,因为它是自动推断的。
如果更改为以上代码,则上述代码有效:
And I have added the following assets
| id | rel |
| a | id |
如何在使用 Cucumber 编写测试时创建资产之间的关系?我试过了:
And I have added the following assets
| id | rel |
| a | org.example.OtherAsset#id |
但这没有用,加上前缀 resource:
也没有用。
使用 JSON 创建资产时工作正常,但我觉得使用 "table" 界面也应该可以做到这一点。
在 Cucumber 中包含关系时,您不需要包含关系的资产类型,因为它是自动推断的。
如果更改为以上代码,则上述代码有效:
And I have added the following assets
| id | rel |
| a | id |