Example #1
0
func TestMain(m *testing.M) {
	defer func(retryOpts retry.Options) {
		clientRetryOptions = retryOpts
	}(clientRetryOptions)

	clientRetryOptions = retry.Options{
		InitialBackoff: 1 * time.Millisecond,
		MaxBackoff:     1 * time.Millisecond,
	}

	leaktest.TestMainWithLeakCheck(m)
}
Example #2
0
func TestMain(m *testing.M) {
	defer func(hbInterval time.Duration, retryOpts retry.Options) {
		heartbeatInterval = hbInterval
		clientRetryOptions = retryOpts
	}(heartbeatInterval, clientRetryOptions)

	heartbeatInterval = 10 * time.Millisecond
	clientRetryOptions = retry.Options{
		InitialBackoff: 1 * time.Millisecond,
		MaxBackoff:     1 * time.Millisecond,
	}

	leaktest.TestMainWithLeakCheck(m)
}
Example #3
0
func TestMain(m *testing.M) {
	leaktest.TestMainWithLeakCheck(m)
}
Example #4
0
func TestMain(m *testing.M) {
	randutil.SeedForTests()
	leaktest.TestMainWithLeakCheck(m)
}
Example #5
0
func TestMain(m *testing.M) {
	tracing.SetTestTracing()
	leaktest.TestMainWithLeakCheck(m)
}