如何在Hyperledger Composer的Cucumber测试中包含关系?

问题描述 投票:0回答:1

在使用Cucumber编写测试时,如何在资产之间创建关系?我试过了:

    And I have added the following assets
    | id | rel                       |
    | a  | org.example.OtherAsset#id |

但这没有用,并且用resource:作为前缀也没有用。

在使用JSON创建资源时它工作正常,但我觉得这也应该可以使用“表”接口。

hyperledger-composer cucumberjs
1个回答
0
投票

在Cucumber中包含关系时,您不需要包含关系的资产类型,因为这是自动推断的。

上面的代码如果更改为:

And I have added the following assets
| id | rel |
| a  | id  |
© www.soinside.com 2019 - 2024. All rights reserved.