1

我无法在 1.2.4 中运行 JUnit 测试套件,因为 play test-only 命令不可用。如果不升级到更高版本的 Play 就可以修复它,请回复相同的内容。

4

4 回答 4

0

Run your app in test mode:

play test

Then open the following URL:

http://localhost:9000/@tests

You'll be able to all, or individual, test classes to run. Unfortunately there's no way to run an individual test.

于 2013-10-11T16:55:40.040 回答
0

您可以使用以下命令运行测试:
play test

更多信息可以在这里找到:http ://www.playframework.com/documentation/1.2.4/test

于 2013-10-10T15:49:17.727 回答
0

IDE:

如果您使用像 eclipse 这样的 ide,您可以在ide 中运行您的 junit 测试

命令行:

命令行还有以下两个选项:

选项1:

play test

这会在测试模式下运行应用程序。然后,您可以通过以下可用的浏览器界面运行所有测试:

http://localhost:9000/@tests(或您的自定义端口,如果您更改了它)

选项 2:

play auto-test

无需打开浏览器即可自动运行测试。

于 2013-10-11T16:02:04.237 回答
0

尝试使用 testOnly 作为命令,而不是 test-only。

于 2018-04-13T13:23:57.423 回答