3

我在带有 Scala 2.10 的 Eclipse (Juno) 中使用 ScalaTest,并且 RunConfigurations 窗口能够运行测试文件、测试套件或测试包。当我在资源管理器窗口中右键单击包名称时,可以选择运行包(从而运行该包中的所有测试)。但是,当我这样做时,不会运行任何测试,它会显示:

WARNING: -p has been deprecated and will be reused for a different (but still very cool) purpose in ScalaTest 2.0. Please change all uses of -p to -R.
Run starting. Expected test count is: 0
DiscoverySuite:
Run completed in 57 milliseconds.
Total number of tests run: 0
Suites: completed 1, aborted 0
Tests: succeeded 0, failed 0, ignored 0, pending 0
All tests passed.

那么,我还需要做什么才能运行包中的所有测试?

4

2 回答 2

1

这就是我从 Eclipse 运行配置中运行所有测试的方式:

  • 选择运行->运行配置
  • 在弹出窗口中选择左侧的 ScalaTest“文件夹”
  • 点击左上角的“新建午餐配置”按钮
  • 在 Main 选项卡上为您的测试运行配置提供一些有意义的名称并确保选择了您的目标项目,然后选择“Suite”单选按钮作为类型
  • 在“Suite Class”字段中,在一定包含所有测试的级别输入包的名称,例如“org.fred.myprog.*”。注意通配符“*”。
  • 点击 Apply 按钮并切换到 Arguments 选项卡
  • 在“VM Arguments”字段中输入类似“-XX:PermSize=64m -XX:MaxPermSize=256m -Xms256m -Xmx512m”的内容。这是必需的,因为通配符触发的测试发现往往需要大量内存。
  • 点击应用按钮,然后点击运行按钮。
于 2014-09-03T00:57:00.483 回答
0

This is the blind leading the blind, but what I found was that when you move the test classes into the same package as the tested classes, then the discovery works.

Weird.

于 2013-12-11T14:39:33.000 回答