gpt4 book ai didi

Scalatest:如何检查集合是否包含满足特定条件的元素

转载 作者:行者123 更新时间:2023-12-04 14:58:09 25 4
gpt4 key购买 nike

假设我有一个书单:

val books = List(
Book(title="Foo", year=2014),
Book(title="Bar", year=2014))

如果集合 books 如何检查单个表达式不是空的,只包含 2014 年出版的书籍?

最佳答案

使用 matchers :

books should not be empty
books.map(_.year) should contain only (2014)

要不就:
books.map(_.year) should contain only (2014)

因为此检查断言该列表不为空。

关于Scalatest:如何检查集合是否包含满足特定条件的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25943699/

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