当您使用Goland的测试功能时,如何输出详细信息?

huangapple go评论79阅读模式
英文:

How do I output details when I use Goland 's Test function ?

问题

我帮你翻译一下:

GOROOT=F:\language\go #gosetup
GOPATH=F:\path\go #gosetup
F:\language\go\bin\go.exe test -c -v -json -o C:\Users\96173\AppData\Local\Temp___TestRequest.exe test.com/project #gosetup
F:\language\go\bin\go.exe tool test2json -t C:\Users\96173\AppData\Local\Temp___TestRequest.exe -test.v -test.run ^TesRequest$ #gosetup

我想要移除参数-c,因为我看不到fmt.Println的输出。

英文:
GOROOT=F:\language\go #gosetup
GOPATH=F:\path\go #gosetup
F:\language\go\bin\go.exe test -c -v -json -o C:\Users173\AppData\Local\Temp\___TestRequest.exe test.com/project #gosetup
F:\language\go\bin\go.exe tool test2json -t C:\Users173\AppData\Local\Temp\___TestRequest.exe -test.v -test.run ^TesRequest$ #gosetup

I want remove the parameters -c,beacause i can't see the fmt.Println output.

答案1

得分: 1

要在文件夹中运行所有测试,请在项目工具窗口中选择该文件夹,然后按下 Ctrl+Shift+F10 或从上下文菜单中选择“在 '文件夹' 中运行测试”。

资源链接:https://www.jetbrains.com/help/go/performing-tests.html#run-tests

当您使用Goland的测试功能时,如何输出详细信息?

英文:

To run all tests in a folder, select this folder in the Project tool window and press Ctrl+Shift+F10 or select Run Tests in 'folder' from the context menu.

Resource: https://www.jetbrains.com/help/go/performing-tests.html#run-tests

当您使用Goland的测试功能时,如何输出详细信息?

答案2

得分: -1

运行 -> 配置 -> Go工具参数添加 -v 参数

英文:

run -> configuration -> Go tool arguments add -v parameter

huangapple
  • 本文由 发表于 2021年9月16日 10:09:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/69201605.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定