我的任务是更新并在Scala Play中对应用程序进行一系列测试,这是一种我不熟悉的语言和框架。我想做的部分是整合ScalaTestPlus库。要开始,我一直在关注以下教程:
https://www.playframework.com/documentation/2.2.x/ScalaTestingWithScalaTest
不幸的是,我没有走得太远。我在测试文件夹中添加了一个新的单元测试文件:
import org.scalatestplus.play._
class StackSpec extends PlaySpec {
"A Test" must {
"pass" in {
assert(1 == 1)
}
"Fail" in {
assert(1 != 1)
}
}
}
我更新了我的build.sbt以包含scalatestplus库
"org.scalatestplus" % "play_2.37" % "1.2.0" % "test"//,
使用Activator,我试图以test-only运行我的测试文件。一切都编译没有错误,但激活器没有找到任何测试
[info] No tests were executed.
我不相信这个问题与激活器有关,因为我可以使用test和only-only命令运行旧的测试文件(来自以前的工程师)。以前(工作)测试文件之一的快速示例:
import java.util.concurrent.TimeUnit
import com.sun.xml.internal.bind.v2.TODO
import scala.collection.JavaConverters._
import controllers.Application
import models.{Item, PriorityBucket}
import play.api.test._
class WebSpec extends PlaySpecification {
"Home page" should {
"do something" in new WithSeleniumDbData(TestUtil.testApp) {
Redacted.deleteAll()
val ObId = TestUtil.create(Some(PriorityBucket.Low),
Some(Application.ENGLISH))
val item = Item.find(ItemId).get
browser.goTo("/")
browser.await().atMost(2,
TimeUnit.SECONDS).until(Selectors.all_obs).isPresent
}
我误入歧途的任何想法?在此先感谢您的帮助!
我正在使用scala 2.11 我正在使用游戏2.3.7
编辑:可能相关,我将扩展从PlaySpec切换到FlatSpec并在编译时看到以下错误:
SampleSpec.scala:10: value in is not a member of String
[error] "pass" in {
我确保导入FlatSpec,这让我有点困惑 - FlatSpec是ScalaTest的成员但不是ScalaTestPlus的成员,我不明白为什么编译会失败。
更新:为了进一步调查此问题,我开发了一个全新的Play应用程序并复制了我的样本测试。经过一些版本的工具后,我已经能够让我的测试在激活器测试命令上与套件的其余部分一起运行。不幸的是,像test-only这样的任何其他命令仍然没有返回任何测试运行。
答案 0 :(得分:0)
对于以下我遇到的问题......在这种情况下,类名必须与文件名相同,否则只测试无法找到它。