https://github.com/etcd-io/etcd
Raw File
Tip revision: 94077fc7caec762b5ba23cc41c558bc175f3cded authored by James Blair on 25 July 2024, 06:16:42 UTC
Merge pull request #18361 from ArkaSaha30/deps_mgmt_22_7_24
Tip revision: 94077fc
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