How to do go test coverage for system testing

Hi christophberger,

Thanks a lot for the reply. I would say when say unit testing is where code coverage analysis make sense might apply well if the system is relatively small and new? For a large system which might be also relatively old, many issues would be captured at integration level rather than at unit testing level so functional/system level testing usually are the main ones people rely on to capture the problem. There are tools in C++ which does the code coverage for system level testing which people use a lot.

Regardless of the previous discussion, I would like to understand whether Go has such tool or effective way to do the code coverage for this type of system/functional testing?