func Stress(tb testtb.TB, f func(ready chan<- struct{}, start <-chan struct{})) int
Stress runs function f in multiple goroutines.
It returns the number of created goroutines.
Function f should do a needed setup, send a message to ready channel when it is ready to start,
wait for start channel to be closed, and then do the actual work.