gpt4 book ai didi

erlang - 测试 : check if tuple is returned

转载 作者:行者123 更新时间:2023-12-02 05:40:54 32 4
gpt4 key购买 nike

我正在编写一个测试来检查 gen_server 的响应。响应本身是 {profile, SomeProfileFromGenServer}{error, ErrorResponse}

所以我想编写一个测试,它可以:

Profile = mygenserver:get_profile(),
?assertEqual(Profile, {profile, SomeProfile})

因为我并不真正关心 SomeProfile 值。但这表示 SomeProfile 未绑定(bind):( 有办法修复它吗?

最佳答案

您可以使用?assertMatch,第一个参数是模式:

?assertMatch({profile, _}, Profile)

关于erlang - 测试 : check if tuple is returned,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40005250/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com