我的合同测试定义为:
class ContractTests {
private val services = MockServices(listOf("com.demo.app"))
@Test
fun `contract test`() {
services.ledger {
transaction {
output(CONTRACT_ID, STATE)
fails()
command(
listOf(MOCK_IDENTITY.publicKey, NULL_PARTY.owningKey),
Contract.Issue()
)
verifies()
}
}
}
}
但是当我运行测试时,我得到了:
java.lang.Exception:格式错误的事务,索引0处的OUTPUTS_GROUP无法反序列化 网络参数未指定任何列入白名单的合同实现。
注意:国家/合同在com.demo.app
下的包装中