WithoutGoLeakDetection disables checking whether a testcase leaked a goroutine.
()
| 63 | |
| 64 | // WithoutGoLeakDetection disables checking whether a testcase leaked a goroutine. |
| 65 | func WithoutGoLeakDetection() TestOption { |
| 66 | return func(opt *testOptions) { opt.goLeakDetection = false } |
| 67 | } |
| 68 | |
| 69 | func WithoutSkipInShort() TestOption { |
| 70 | return func(opt *testOptions) { opt.skipInShort = false } |
no outgoing calls
no test coverage detected
searching dependent graphs…