Although the Unit Tests will test each function serially, additional testing is needed for concurrency.
One method in Go is to use
Other concurrency tests may be needed. Specifically Go programs that use the go func() call for asynchronous execution.
References
Although the Unit Tests will test each function serially, additional testing is needed for concurrency.
One method in Go is to use
go test -race ...Other concurrency tests may be needed. Specifically Go programs that use the
go func()call for asynchronous execution.References