Is there a way to Debug a Single ActionSuite Test in an IDE like Goland or VSCode? Thanks a lot for your help!
Asked
Active
Viewed 199 times
2
-
In vscode , the Go plugin by microsoft willl give option to debug test, it will show an underlined text above you test funtion asking you to debug or run test – Pharaoh Nov 15 '18 at 19:14
-
This applies for me for e.g. the func Test_ActionSuite(t *testing.T) but not for a ActionSuite method like: func (as *ActionSuite) Test_AdminUsersResource_Show() – Linus B. Nov 16 '18 at 20:10
1 Answers
1
Starting from GoLand 2018.3 (release candidate at the time of writing this), you can use the built-in testing framework as you do with the "testing" package today.

dlsniper
- 7,188
- 1
- 35
- 44