哪个 Specs2 依赖项包含 AroundOutside?
Which Specs2 dependency contains AroundOutside?
我正在从 Specs2 2.3.12
升级到 3.6.1
,但我无法确定要在 build.sbt
中包含哪个依赖项以引入 AroundOutside
特性。
我已经包含了 Installation doc 中列出的所有依赖项,但仍然得到 object AroundOutside is not a member of package org.specs2.specification
。
AroundOutside
特征已记录 here。
AroundOutside
已从 3.x 中的 specs2
中删除。您可以使用 Foreach[T]
特性来覆盖类似的功能。
我正在从 Specs2 2.3.12
升级到 3.6.1
,但我无法确定要在 build.sbt
中包含哪个依赖项以引入 AroundOutside
特性。
我已经包含了 Installation doc 中列出的所有依赖项,但仍然得到 object AroundOutside is not a member of package org.specs2.specification
。
AroundOutside
特征已记录 here。
AroundOutside
已从 3.x 中的 specs2
中删除。您可以使用 Foreach[T]
特性来覆盖类似的功能。