0

我目前正在尝试在游戏框架中使用 Mockclasses 进行测试。我已经实现了文档中所写的所有内容。不幸的是,编译器说:

[error] bad symbolic reference. A signature in MockitoStubs.class refers to term stubbing
[error] in package org.mockito which is not available.
[error] It may be completely missing from the current classpath, or the version on
[error] the classpath might be incompatible with the version used when compiling MockitoStubs.class.

我发现其他一些人在 Mac 上运行游戏并且有同样的错误,但我找不到任何解决方案。有没有人有这个问题的解决方案?也许是mac jdk的问题?

4

2 回答 2

0

Mockito 是一个可选依赖项(就像大多数 Play2 依赖项一样)。摘自我的Build.scala

"org.mockito" % "mockito-all" % "1.9.5"
于 2013-10-25T11:21:39.333 回答
0

我刚刚安装了新的 OS X 10.9 版本,其中包括 xCode 更新和 SDK 更新(我猜 Java 也得到了更新)。无论如何,该错误不再发生,因此可能是jdk的问题...

于 2013-10-24T20:06:45.207 回答