当我编译规范时,编译器告诉我
我的规范类的突出部分是:
import org.specs2._
import specification._
import mock._
class EnterpriseDirectoryActionSpec extends Specification { def is = s2"""
An enterprise directory action should provide enabled fields
after a call to doDefault ${c().e1}
after a call to doSearchPrevious ${c().e2}
after a call to doSearchNext ${c().e3}
after a call to doExecuteSearch ${c().e4}
"""
...
导致错误的原因是什么,我该如何纠正?
我正在使用 Specs2 (artifact specs2_2.10) 1.14 版。
最佳答案
您需要使用更高版本的 specs2:specs2-2.0-RC1 或 specs2-2.0-RC2-SNAPSHOT
关于specs2 - Specs2 类中未解析的符号 s2,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16717634/