gpt4 book ai didi

Scala/Play 2 - 无法运行示例 specs2 测试

转载 作者:行者123 更新时间:2023-12-03 06:56:04 25 4
gpt4 key购买 nike

我在 OS X 上使用 Play Framework v2.04 和 Scala(通过 Homebrew 安装)。一切都按预期工作,但是我似乎无法获得基本的 Hello World sample specs2 test from the Play website's documentation运行。这是我的 /app/test/example.scala 文件中的代码:

import org.specs2.mutable._

import play.api.test._
import play.api.test.Helpers._

class HelloWorldSpec extends Specification {

"The 'Hello world' string" should {
"contain 11 characters" in {
"Hello world" must have size(11)
}
"start with 'Hello'" in {
"Hello world" must startWith("Hello")
}
"end with 'world'" in {
"Hello world" must endWith("world")
}
}
}

但是,当我运行 Play 测试时,出现以下错误:

[error] /app/test/example.scala:3: object test is not a member of package play.api

据我所知,测试对象应该是 play.api 包 ( according to the API reference documentation ) 的成员。

关于如何解决这个问题有什么想法吗?

谢谢!

最佳答案

在项目根目录下创建test目录,并将example.scalaapp/test移动到test.

关于Scala/Play 2 - 无法运行示例 specs2 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14258056/

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