英文:
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
英文:
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
答案2
得分: -1
运行 -> 配置 -> Go工具参数添加 -v 参数
英文:
run -> configuration -> Go tool arguments add -v parameter
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论