https://github.com/etcd-io/etcd
Raw File
Tip revision: 306b317bc1fd2f61421676788821ff88f4a62cac authored by Piotr Tabor on 21 December 2023, 13:41:43 UTC
Update README.md
Tip revision: 306b317
main_test.go
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package integration

import (
	"testing"

	"go.etcd.io/etcd/client/pkg/v3/testutil"
)

func TestMain(m *testing.M) {
	testutil.MustTestMainWithLeakDetection(m)
}
back to top